From 3cc58f83141a2767a866fd1205ec242548bf7513 Mon Sep 17 00:00:00 2001 From: andreaangiolillo Date: Wed, 4 Jun 2025 14:38:49 +0200 Subject: [PATCH 1/6] CLOUDP-322242: Add Service account curl example to OAS --- .github/scripts/split_spec.sh | 2 +- .../internal/openapi/filter/code_sample.go | 30 +- .../openapi/filter/code_sample_test.go | 24 +- .../data/split/dev/openapi-v2-2023-01-01.json | 2359 +++++++++-- .../data/split/dev/openapi-v2-2023-01-01.yaml | 2924 ++++++++++++-- .../data/split/dev/openapi-v2-2023-02-01.json | 2443 ++++++++++-- .../data/split/dev/openapi-v2-2023-02-01.yaml | 3030 ++++++++++++-- .../data/split/dev/openapi-v2-2023-10-01.json | 2541 ++++++++++-- .../data/split/dev/openapi-v2-2023-10-01.yaml | 3170 +++++++++++++-- .../data/split/dev/openapi-v2-2023-11-15.json | 2632 +++++++++++-- .../data/split/dev/openapi-v2-2023-11-15.yaml | 3278 +++++++++++++-- .../data/split/dev/openapi-v2-2024-05-30.json | 2758 +++++++++++-- .../data/split/dev/openapi-v2-2024-05-30.yaml | 3448 ++++++++++++++-- .../data/split/dev/openapi-v2-2024-08-05.json | 2758 +++++++++++-- .../data/split/dev/openapi-v2-2024-08-05.yaml | 3448 ++++++++++++++-- .../data/split/dev/openapi-v2-2025-01-01.json | 2800 +++++++++++-- .../data/split/dev/openapi-v2-2025-01-01.yaml | 3500 +++++++++++++++-- 17 files changed, 35868 insertions(+), 5277 deletions(-) diff --git a/.github/scripts/split_spec.sh b/.github/scripts/split_spec.sh index 3f348be4b9..e541b20775 100755 --- a/.github/scripts/split_spec.sh +++ b/.github/scripts/split_spec.sh @@ -2,7 +2,7 @@ set -eou pipefail echo "Running FOAS CLI versions command" -foascli versions -s openapi-foas.json -o ./openapi/v2/versions.json --env "${target_env:?}" --stability-level stable --stability-level preview +foascli versions -s openapi-foas.json -o ./openapi/v2/versions.json --env "${target_env:?}" --stability-level stable --stability-level preview --stability-level upcoming echo "Running FOAS CLI split command with the following --env=${target_env:?} and -o=./openapi/v2/openapi.json" diff --git a/tools/cli/internal/openapi/filter/code_sample.go b/tools/cli/internal/openapi/filter/code_sample.go index b7f96824b4..f796835586 100644 --- a/tools/cli/internal/openapi/filter/code_sample.go +++ b/tools/cli/internal/openapi/filter/code_sample.go @@ -54,7 +54,7 @@ func (f *CodeSampleFilter) Apply() error { return nil } -func (f *CodeSampleFilter) newCurlCodeSamplesForOperation(pathName, opMethod string) codeSample { +func (f *CodeSampleFilter) newDigestCurlCodeSamplesForOperation(pathName, opMethod string) codeSample { version := apiVersion(f.metadata.targetVersion) source := "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas." + version + "+json\" \\\n " @@ -72,7 +72,30 @@ func (f *CodeSampleFilter) newCurlCodeSamplesForOperation(pathName, opMethod str return codeSample{ Lang: "cURL", - Label: "curl", + Label: "curl (Digest)", + Source: source, + } +} + +func (f *CodeSampleFilter) newServiceAccountCurlCodeSamplesForOperation(pathName, opMethod string) codeSample { + version := apiVersion(f.metadata.targetVersion) + source := "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n " + + "--header \"Accept: application/vnd.atlas." + version + "+json\" \\\n " + + switch opMethod { + case "GET": + source += "-X " + opMethod + " \"https://cloud.mongodb.com" + pathName + "?pretty=true\"" + case "DELETE": + 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 + " \"https://cloud.mongodb.com" + pathName + "\" \\\n " + source += "-d " + "'{ }'" + } + + return codeSample{ + Lang: "cURL", + Label: "curl (Service Account)", Source: source, } } @@ -108,7 +131,8 @@ func (f *CodeSampleFilter) includeCodeSamplesForOperation(pathName, opMethod str } op.Extensions[codeSampleExtensionName] = []codeSample{ - f.newCurlCodeSamplesForOperation(pathName, opMethod), + f.newServiceAccountCurlCodeSamplesForOperation(pathName, opMethod), + f.newDigestCurlCodeSamplesForOperation(pathName, opMethod), newAtlasCliCodeSamplesForOperation(op), } return nil diff --git a/tools/cli/internal/openapi/filter/code_sample_test.go b/tools/cli/internal/openapi/filter/code_sample_test.go index 5cdc8e9c77..e813c80852 100644 --- a/tools/cli/internal/openapi/filter/code_sample_test.go +++ b/tools/cli/internal/openapi/filter/code_sample_test.go @@ -78,7 +78,13 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl", + Label: "curl (Service Account)", + Source: "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n " + + "--header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", + }, + { + Lang: "cURL", + Label: "curl (Digest)", 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/test?pretty=true\"", }, @@ -141,7 +147,13 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl", + Label: "curl (Service Account)", + Source: "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n " + + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", + }, + { + Lang: "cURL", + Label: "curl (Digest)", Source: "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, @@ -204,7 +216,13 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl", + Label: "curl (Service Account)", + Source: "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n " + + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", + }, + { + Lang: "cURL", + Label: "curl (Digest)", Source: "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, 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 3fed8b16dc..b0beb88423 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 @@ -242,7 +242,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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\"" }, { @@ -299,7 +304,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -362,7 +372,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -425,7 +440,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -479,7 +499,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -545,7 +570,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -618,7 +648,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -689,7 +724,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -771,7 +811,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -834,7 +879,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -906,7 +956,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -979,7 +1034,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1053,7 +1113,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1138,7 +1203,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1236,7 +1306,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1310,7 +1385,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1391,7 +1471,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1452,7 +1537,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1518,7 +1608,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1604,7 +1699,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1678,7 +1778,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1738,7 +1843,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -1796,7 +1906,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1871,7 +1986,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1941,7 +2061,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2029,7 +2154,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2104,7 +2234,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2180,7 +2315,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2257,7 +2397,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2323,7 +2468,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2392,7 +2542,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2462,7 +2617,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2533,7 +2693,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2615,7 +2780,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2700,7 +2870,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2782,7 +2957,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2864,7 +3044,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2936,7 +3121,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3021,7 +3211,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3103,7 +3298,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3173,7 +3373,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3239,7 +3444,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3315,7 +3525,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -3405,7 +3620,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3486,7 +3706,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3543,7 +3768,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3612,7 +3842,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3669,7 +3904,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3735,7 +3975,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3802,7 +4047,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3878,7 +4128,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3952,7 +4207,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4021,7 +4281,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4083,7 +4348,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4168,7 +4438,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4226,7 +4501,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4296,7 +4576,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4377,7 +4662,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4446,7 +4736,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4534,7 +4829,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4610,7 +4910,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4690,7 +4995,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4776,7 +5086,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4856,7 +5171,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4936,7 +5256,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5020,7 +5345,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -5095,7 +5425,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5184,7 +5519,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5263,7 +5603,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5347,7 +5692,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5422,7 +5772,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5500,7 +5855,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5587,7 +5947,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5671,7 +6036,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -5750,7 +6120,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5820,7 +6195,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5889,7 +6269,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5972,7 +6357,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6054,7 +6444,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6135,7 +6530,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6216,7 +6616,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6298,7 +6703,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6370,7 +6780,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6454,7 +6869,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6536,7 +6956,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6629,7 +7054,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6721,7 +7151,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6810,7 +7245,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6882,7 +7322,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6966,7 +7411,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7038,7 +7488,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7122,7 +7577,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7201,7 +7661,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7289,7 +7754,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7380,7 +7850,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7476,7 +7951,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7566,7 +8046,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -7651,7 +8136,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7753,7 +8243,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7828,7 +8323,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7903,7 +8403,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7990,7 +8495,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8084,7 +8594,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8174,7 +8689,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8350,7 +8870,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8432,7 +8957,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8523,7 +9053,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8632,7 +9167,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8720,7 +9260,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -8809,7 +9354,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8912,7 +9462,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8991,7 +9546,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9068,7 +9628,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9153,7 +9718,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9230,7 +9800,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9321,7 +9896,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9389,7 +9969,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9483,7 +10068,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9565,7 +10155,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9650,7 +10245,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9723,7 +10323,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9795,7 +10400,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9881,7 +10491,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9967,7 +10582,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10038,7 +10658,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10117,7 +10742,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10210,7 +10840,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10295,7 +10930,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -10375,7 +11015,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10466,7 +11111,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10535,7 +11185,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10653,7 +11308,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10738,7 +11398,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10816,7 +11481,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10882,7 +11552,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10961,7 +11636,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11029,7 +11709,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11120,7 +11805,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11180,7 +11870,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11258,7 +11953,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11330,7 +12030,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11397,7 +12102,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11484,7 +12194,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11557,7 +12272,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11632,7 +12352,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11698,7 +12423,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11765,7 +12495,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11852,7 +12587,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11924,7 +12664,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12002,7 +12747,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -12081,7 +12831,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12174,7 +12929,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12270,7 +13030,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12336,7 +13101,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12566,7 +13336,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12648,7 +13423,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -12725,7 +13505,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12822,7 +13607,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12900,7 +13690,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12992,7 +13787,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13115,7 +13915,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13235,7 +14040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13292,7 +14102,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13367,7 +14182,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13436,7 +14256,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13514,7 +14339,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13606,7 +14436,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13685,7 +14520,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13818,7 +14658,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13899,7 +14744,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13959,7 +14809,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14065,7 +14920,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14174,7 +15034,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14275,7 +15140,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14347,7 +15217,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14432,7 +15307,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -14515,7 +15395,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14621,7 +15506,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14724,7 +15614,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14794,7 +15689,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14868,7 +15768,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14936,7 +15841,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15004,7 +15914,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15076,7 +15991,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15159,7 +16079,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15220,7 +16145,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15289,7 +16219,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15376,7 +16311,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15464,7 +16404,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15563,7 +16508,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15643,7 +16593,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15724,7 +16679,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15801,7 +16761,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15867,7 +16832,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15933,7 +16903,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15987,7 +16962,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16042,7 +17022,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16108,7 +17093,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16162,7 +17152,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16216,7 +17211,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16273,7 +17273,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16330,7 +17335,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16387,7 +17397,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16505,7 +17520,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16588,7 +17608,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16667,7 +17692,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16739,7 +17769,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -16809,7 +17844,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16896,7 +17936,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16956,7 +18001,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17025,7 +18075,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17094,7 +18149,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17164,7 +18224,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17248,7 +18313,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17323,7 +18393,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17414,7 +18489,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17486,7 +18566,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17558,7 +18643,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17649,7 +18739,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17734,7 +18829,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17817,7 +18917,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17900,7 +19005,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17972,7 +19082,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18032,7 +19147,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18101,7 +19221,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18172,7 +19297,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18253,7 +19383,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18333,7 +19468,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18411,7 +19551,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18500,7 +19645,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18575,7 +19725,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18659,7 +19814,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18744,7 +19904,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18848,7 +20013,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18942,7 +20112,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19037,7 +20212,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19099,7 +20279,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19173,7 +20358,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19245,7 +20435,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19314,7 +20509,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19386,7 +20586,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19459,7 +20664,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19525,7 +20735,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19593,7 +20808,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19670,7 +20890,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19747,7 +20972,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19863,7 +21093,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19940,7 +21175,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20014,7 +21254,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20139,7 +21384,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20371,7 +21621,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20457,7 +21712,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20567,7 +21827,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20693,7 +21958,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20756,7 +22026,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20817,7 +22092,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20890,7 +22170,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20963,7 +22248,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21035,7 +22325,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21101,7 +22396,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21167,7 +22467,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21239,7 +22544,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21320,7 +22630,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21407,7 +22722,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21491,7 +22811,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21572,7 +22897,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21654,7 +22984,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21723,7 +23058,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21796,7 +23136,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21871,7 +23216,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -21944,7 +23294,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22025,7 +23380,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22088,7 +23448,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22160,7 +23525,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22235,7 +23605,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22317,7 +23692,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22393,7 +23773,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -22484,7 +23869,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22541,7 +23931,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22610,7 +24005,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22664,7 +24064,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22721,7 +24126,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22792,7 +24202,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22861,7 +24276,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22945,7 +24365,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23017,7 +24442,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -23103,7 +24533,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23183,7 +24618,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23258,7 +24698,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23324,7 +24769,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -23388,7 +24838,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23463,7 +24918,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23533,7 +24993,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23603,7 +25068,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23676,7 +25146,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -23747,7 +25222,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23832,7 +25312,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23914,7 +25399,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24010,7 +25500,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24100,7 +25595,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24185,7 +25685,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24253,7 +25758,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24334,7 +25844,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24439,7 +25954,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24520,7 +26040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24583,7 +26108,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24663,7 +26193,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24738,7 +26273,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24810,7 +26350,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24882,7 +26427,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24954,7 +26504,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25024,7 +26579,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25108,7 +26668,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25256,7 +26821,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25316,7 +26886,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25394,7 +26969,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25465,7 +27045,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25528,7 +27113,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25585,7 +27175,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25654,7 +27249,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25717,7 +27317,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25789,7 +27394,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25865,7 +27475,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25944,7 +27559,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26020,7 +27640,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26099,7 +27724,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -26176,7 +27806,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26267,7 +27902,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26355,7 +27995,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26449,7 +28094,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26537,7 +28187,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -26609,7 +28264,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26684,7 +28344,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -26770,7 +28435,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26838,7 +28508,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26905,7 +28580,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26974,7 +28654,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { 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 395eafa99f..104fa24566 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 @@ -28293,7 +28293,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28330,7 +28336,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28368,7 +28380,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28406,7 +28424,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28442,7 +28466,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28483,7 +28513,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28532,7 +28568,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28580,7 +28622,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28635,7 +28683,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28677,7 +28733,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28723,7 +28785,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28773,7 +28843,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28822,7 +28898,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28878,7 +28960,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28943,7 +29033,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28992,7 +29088,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29049,7 +29151,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29091,7 +29201,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29131,7 +29247,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29188,7 +29310,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29228,7 +29358,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29265,7 +29401,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29313,7 +29455,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29357,7 +29507,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29411,7 +29567,15 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29467,7 +29631,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29517,7 +29687,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29567,7 +29743,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29609,7 +29791,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29656,7 +29844,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29707,7 +29903,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29757,7 +29959,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29816,7 +30024,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29879,7 +30095,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29935,7 +30159,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29988,7 +30218,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30038,7 +30274,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30097,7 +30339,15 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30153,7 +30403,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30195,7 +30451,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30237,7 +30499,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30289,7 +30559,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30345,7 +30621,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30400,7 +30684,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30438,7 +30730,13 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30482,7 +30780,15 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30520,7 +30826,13 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30562,7 +30874,15 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30604,7 +30924,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30654,7 +30980,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30706,7 +31040,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30753,7 +31093,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30793,7 +31139,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30849,7 +31201,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30888,7 +31248,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30933,7 +31299,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30988,7 +31362,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31033,7 +31413,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31091,7 +31477,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31139,7 +31533,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31191,7 +31591,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31249,7 +31657,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31299,7 +31713,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31358,7 +31778,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31409,7 +31837,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31465,7 +31899,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31517,7 +31959,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31565,7 +32013,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31625,7 +32079,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31683,7 +32145,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31736,7 +32204,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31783,7 +32257,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31829,7 +32309,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31887,7 +32373,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31940,7 +32434,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31996,7 +32496,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32054,7 +32562,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32109,7 +32623,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32171,7 +32691,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32227,7 +32755,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32282,7 +32816,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32329,7 +32869,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32389,7 +32935,15 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32449,7 +33003,15 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32498,7 +33060,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32554,7 +33122,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32601,7 +33175,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32657,7 +33237,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32706,7 +33292,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32765,7 +33357,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32825,7 +33423,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32891,7 +33497,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32952,7 +33564,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33010,7 +33628,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33079,7 +33703,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33131,7 +33763,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33181,7 +33819,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33239,7 +33883,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33303,7 +33955,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33363,7 +34021,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33486,7 +34152,15 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33539,7 +34213,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33599,7 +34279,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33660,7 +34348,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33720,7 +34414,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33789,7 +34489,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33866,7 +34574,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33918,7 +34632,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33969,7 +34689,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34025,7 +34751,15 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34078,7 +34812,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34139,7 +34879,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34186,7 +34934,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34251,7 +35007,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34305,7 +35067,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34367,7 +35137,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34415,7 +35191,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34463,7 +35245,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34520,7 +35308,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34579,7 +35375,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34631,7 +35435,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34686,7 +35496,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34747,7 +35565,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34804,7 +35628,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34858,7 +35688,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34919,7 +35755,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34966,7 +35810,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35047,7 +35897,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35099,7 +35955,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35150,7 +36012,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35203,7 +36073,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35257,7 +36135,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35307,7 +36191,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35361,7 +36253,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35406,7 +36304,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35466,7 +36370,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35507,7 +36419,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35545,7 +36463,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35595,7 +36519,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35643,7 +36575,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35686,7 +36624,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35742,7 +36686,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35791,7 +36743,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35839,7 +36797,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35883,7 +36849,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35927,7 +36899,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35983,7 +36961,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36031,7 +37017,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36091,7 +37083,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36151,7 +37149,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36221,7 +37225,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36289,7 +37301,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36328,7 +37346,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36469,7 +37493,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36537,7 +37569,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36600,7 +37638,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36676,7 +37720,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36725,7 +37777,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36790,7 +37848,15 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36874,7 +37940,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36953,7 +38025,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36992,7 +38070,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37052,7 +38136,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37098,7 +38190,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37148,7 +38246,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37210,7 +38316,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37262,7 +38374,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37355,7 +38473,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37411,7 +38535,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37449,7 +38579,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37517,7 +38653,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37584,7 +38726,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37650,7 +38798,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37693,7 +38847,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37751,7 +38911,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37808,7 +38974,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37877,7 +39049,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37946,7 +39126,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37993,7 +39181,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38041,7 +39235,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38087,7 +39289,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38135,7 +39345,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38183,7 +39399,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38239,7 +39461,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38280,7 +39510,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38324,7 +39560,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38400,7 +39642,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38477,7 +39725,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38564,7 +39818,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38625,7 +39887,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38669,7 +39939,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38710,7 +39986,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38764,7 +40048,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38818,7 +40110,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38853,7 +40151,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38888,7 +40192,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38931,7 +40241,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38968,7 +40286,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39005,7 +40331,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39043,7 +40377,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39079,7 +40419,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39115,7 +40461,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39194,7 +40548,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39245,7 +40605,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39296,7 +40662,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39345,7 +40719,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39391,7 +40771,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39448,7 +40834,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39489,7 +40883,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39534,7 +40934,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39582,7 +40990,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39628,7 +41042,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39684,7 +41104,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39735,7 +41163,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39792,7 +41226,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39839,7 +41279,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39888,7 +41336,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39947,7 +41403,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40004,7 +41466,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40060,7 +41528,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40114,7 +41588,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40165,7 +41647,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40221,7 +41709,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40278,7 +41772,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40347,7 +41847,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40412,7 +41920,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40476,7 +41990,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40522,7 +42042,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40562,7 +42090,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40606,7 +42140,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40655,7 +42197,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40712,7 +42260,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40768,7 +42324,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40821,7 +42383,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40881,7 +42449,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40923,7 +42499,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40971,7 +42553,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41016,7 +42606,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41079,7 +42675,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41128,7 +42732,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41176,7 +42786,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41215,7 +42831,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41259,7 +42881,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41306,7 +42934,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41356,7 +42990,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41432,7 +43072,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41479,7 +43125,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41528,7 +43180,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41620,7 +43278,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41823,7 +43487,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41887,7 +43557,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41968,7 +43644,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42056,7 +43738,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42096,7 +43784,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42135,7 +43829,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42182,7 +43882,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42231,7 +43939,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42281,7 +43997,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42327,7 +44051,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42366,7 +44096,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42412,7 +44148,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42464,7 +44208,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42521,7 +44271,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42579,7 +44337,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42629,7 +44393,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42685,7 +44455,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42730,7 +44506,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42779,7 +44561,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42830,7 +44620,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42878,7 +44674,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42931,7 +44733,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42973,7 +44783,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43019,7 +44835,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43066,7 +44890,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43119,7 +44949,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43172,7 +45010,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43232,7 +45076,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43270,7 +45122,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43317,7 +45175,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43357,7 +45223,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43393,7 +45265,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43438,7 +45316,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43485,7 +45371,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43536,7 +45428,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43583,7 +45481,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43639,7 +45543,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43690,7 +45602,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43739,7 +45657,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43788,7 +45712,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43838,7 +45770,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43879,7 +45817,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43927,7 +45871,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43971,7 +45923,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44016,7 +45974,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44066,7 +46032,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44113,7 +46085,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44169,7 +46147,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44222,7 +46208,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44282,7 +46274,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44344,7 +46344,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44401,7 +46407,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44445,7 +46457,15 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44501,7 +46521,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44572,7 +46598,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44628,7 +46660,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44668,7 +46706,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44724,7 +46768,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44772,7 +46822,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44818,7 +46874,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44866,7 +46930,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44914,7 +46986,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44961,7 +47039,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45016,7 +47100,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45118,7 +47210,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45171,7 +47269,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45225,7 +47329,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45263,7 +47373,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45303,7 +47419,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45340,7 +47462,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45384,7 +47512,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45426,7 +47562,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45472,7 +47614,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45520,7 +47670,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45571,7 +47727,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45625,7 +47789,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45676,7 +47846,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45736,7 +47912,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45794,7 +47978,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45856,7 +48046,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45917,7 +48115,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45966,7 +48170,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46009,7 +48219,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46059,7 +48275,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46115,7 +48337,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46166,7 +48396,15 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46214,7 +48452,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46258,7 +48502,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ 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 0008fe5877..2a07d8fe96 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 @@ -246,7 +246,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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\"" }, { @@ -303,7 +308,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -366,7 +376,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -429,7 +444,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -483,7 +503,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -549,7 +574,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -622,7 +652,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -693,7 +728,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -775,7 +815,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -838,7 +883,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -910,7 +960,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -983,7 +1038,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1057,7 +1117,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1142,7 +1207,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1240,7 +1310,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1314,7 +1389,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1395,7 +1475,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1456,7 +1541,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1522,7 +1612,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1608,7 +1703,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1682,7 +1782,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1742,7 +1847,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -1800,7 +1910,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1875,7 +1990,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1951,7 +2071,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2021,7 +2146,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2109,7 +2239,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2184,7 +2319,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2260,7 +2400,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2337,7 +2482,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2403,7 +2553,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2472,7 +2627,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2542,7 +2702,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2613,7 +2778,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2695,7 +2865,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2780,7 +2955,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2862,7 +3042,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2944,7 +3129,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3016,7 +3206,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3101,7 +3296,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3183,7 +3383,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3253,7 +3458,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3319,7 +3529,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3395,7 +3610,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -3485,7 +3705,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3566,7 +3791,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3623,7 +3853,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3692,7 +3927,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3749,7 +3989,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3815,7 +4060,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3882,7 +4132,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3958,7 +4213,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4032,7 +4292,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4101,7 +4366,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4163,7 +4433,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4248,7 +4523,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4306,7 +4586,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4376,7 +4661,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4457,7 +4747,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4526,7 +4821,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4614,7 +4914,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4690,7 +4995,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4770,7 +5080,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4856,7 +5171,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4936,7 +5256,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5016,7 +5341,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5099,7 +5429,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -5173,7 +5508,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5262,7 +5602,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5341,7 +5686,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5425,7 +5775,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5500,7 +5855,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5578,7 +5938,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5665,7 +6030,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5749,7 +6119,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -5828,7 +6203,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5898,7 +6278,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5967,7 +6352,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6050,7 +6440,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6132,7 +6527,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6213,7 +6613,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6294,7 +6699,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6376,7 +6786,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6448,7 +6863,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6532,7 +6952,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6614,7 +7039,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6707,7 +7137,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6799,7 +7234,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6888,7 +7328,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6960,7 +7405,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7044,7 +7494,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7116,7 +7571,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7200,7 +7660,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7279,7 +7744,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7367,7 +7837,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7458,7 +7933,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7554,7 +8034,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7644,7 +8129,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -7729,7 +8219,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7831,7 +8326,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7906,7 +8406,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7981,7 +8486,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8068,7 +8578,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8162,7 +8677,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8252,7 +8772,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8428,7 +8953,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8510,7 +9040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8601,7 +9136,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8710,7 +9250,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8798,7 +9343,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -8887,7 +9437,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8990,7 +9545,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9069,7 +9629,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9146,7 +9711,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9231,7 +9801,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9308,7 +9883,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9399,7 +9979,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9466,7 +10051,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9559,7 +10149,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9641,7 +10236,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9726,7 +10326,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9799,7 +10404,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9871,7 +10481,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9957,7 +10572,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10043,7 +10663,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10114,7 +10739,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10193,7 +10823,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10286,7 +10921,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10371,7 +11011,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -10451,7 +11096,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10542,7 +11192,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10611,7 +11266,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10728,7 +11388,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10812,7 +11477,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10890,7 +11560,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10956,7 +11631,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11035,7 +11715,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11103,7 +11788,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11194,7 +11884,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11254,7 +11949,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11332,7 +12032,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11404,7 +12109,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11471,7 +12181,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11558,7 +12273,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11631,7 +12351,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11706,7 +12431,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11772,7 +12502,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11839,7 +12574,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11926,7 +12666,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11998,7 +12743,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12076,7 +12826,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -12155,7 +12910,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12248,7 +13008,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12344,7 +13109,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12410,7 +13180,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12640,7 +13415,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12722,7 +13502,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -12799,7 +13584,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12896,7 +13686,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12974,7 +13769,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13066,7 +13866,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13189,7 +13994,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13309,7 +14119,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13366,7 +14181,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13441,7 +14261,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13510,7 +14335,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13588,7 +14418,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13680,7 +14515,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13759,7 +14599,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13892,7 +14737,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13973,7 +14823,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14033,7 +14888,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14139,7 +14999,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14248,7 +15113,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14349,7 +15219,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14421,7 +15296,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14506,7 +15386,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -14589,7 +15474,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14695,7 +15585,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14798,7 +15693,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14868,7 +15768,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14942,7 +15847,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15010,7 +15920,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15078,7 +15993,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15150,7 +16070,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15233,7 +16158,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15294,7 +16224,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15363,7 +16298,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15450,7 +16390,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15538,7 +16483,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15637,7 +16587,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15717,7 +16672,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15798,7 +16758,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15875,7 +16840,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15941,7 +16911,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16007,7 +16982,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16061,7 +17041,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16116,7 +17101,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16182,7 +17172,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16236,7 +17231,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16290,7 +17290,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16347,7 +17352,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16404,7 +17414,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16461,7 +17476,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16579,7 +17599,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16662,7 +17687,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16741,7 +17771,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16813,7 +17848,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -16883,7 +17923,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16970,7 +18015,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17030,7 +18080,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17099,7 +18154,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17168,7 +18228,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17238,7 +18303,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17322,7 +18392,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17397,7 +18472,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17488,7 +18568,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17560,7 +18645,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17632,7 +18722,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17723,7 +18818,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17808,7 +18908,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17891,7 +18996,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17974,7 +19084,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18046,7 +19161,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18106,7 +19226,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18175,7 +19300,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18246,7 +19376,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18327,7 +19462,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18407,7 +19547,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18485,7 +19630,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18574,7 +19724,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18649,7 +19804,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18733,7 +19893,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18818,7 +19983,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18922,7 +20092,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19016,7 +20191,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19111,7 +20291,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19173,7 +20358,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19247,7 +20437,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19319,7 +20514,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19388,7 +20588,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19460,7 +20665,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19533,7 +20743,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19599,7 +20814,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19667,7 +20887,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19744,7 +20969,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19821,7 +21051,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19937,7 +21172,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20014,7 +21254,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20088,7 +21333,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20213,7 +21463,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20445,7 +21700,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20531,7 +21791,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20641,7 +21906,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20767,7 +22037,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20830,7 +22105,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20891,7 +22171,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20964,7 +22249,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21037,7 +22327,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21109,7 +22404,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21175,7 +22475,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21241,7 +22546,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21313,7 +22623,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21394,7 +22709,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21481,7 +22801,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21565,7 +22890,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21646,7 +22976,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21728,7 +23063,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21797,7 +23137,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21870,7 +23215,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21945,7 +23295,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -22018,7 +23373,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22099,7 +23459,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22162,7 +23527,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22234,7 +23604,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22297,7 +23672,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22366,7 +23746,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22438,7 +23823,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -22513,7 +23903,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22597,7 +23992,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22696,7 +24096,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22771,7 +24176,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22852,7 +24262,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22933,7 +24348,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -23006,7 +24426,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23099,7 +24524,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23174,7 +24604,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23256,7 +24691,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23332,7 +24772,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -23423,7 +24868,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23480,7 +24930,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23549,7 +25004,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23603,7 +25063,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23660,7 +25125,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23731,7 +25201,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23800,7 +25275,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23884,7 +25364,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23956,7 +25441,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24042,7 +25532,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24122,7 +25617,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24197,7 +25697,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24263,7 +25768,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -24327,7 +25837,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24402,7 +25917,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24472,7 +25992,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24542,7 +26067,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24615,7 +26145,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24686,7 +26221,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24771,7 +26311,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24853,7 +26398,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24949,7 +26499,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25039,7 +26594,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25124,7 +26684,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25192,7 +26757,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25273,7 +26843,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25378,7 +26953,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25459,7 +27039,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25522,7 +27107,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25602,7 +27192,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25677,7 +27272,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25749,7 +27349,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25821,7 +27426,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25893,7 +27503,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25963,7 +27578,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26047,7 +27667,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26195,7 +27820,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26255,7 +27885,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26333,7 +27968,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26404,7 +28044,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26467,7 +28112,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26524,7 +28174,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26593,7 +28248,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26656,7 +28316,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26728,7 +28393,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26804,7 +28474,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26883,7 +28558,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26959,7 +28639,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27038,7 +28723,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27115,7 +28805,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27206,7 +28901,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27294,7 +28994,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27388,7 +29093,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27476,7 +29186,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27548,7 +29263,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27623,7 +29343,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27709,7 +29434,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27777,7 +29507,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27844,7 +29579,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27913,7 +29653,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { 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 3c2c29d556..862240d4ae 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 @@ -28657,7 +28657,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28694,7 +28700,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28732,7 +28744,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28770,7 +28788,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28806,7 +28830,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28847,7 +28877,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28896,7 +28932,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28944,7 +28986,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -28999,7 +29047,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29041,7 +29097,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29087,7 +29149,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29137,7 +29207,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29186,7 +29262,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29242,7 +29324,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29307,7 +29397,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29356,7 +29452,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29413,7 +29515,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29455,7 +29565,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29495,7 +29611,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29552,7 +29674,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29592,7 +29722,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29629,7 +29765,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29677,7 +29819,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29727,7 +29877,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29771,7 +29929,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29825,7 +29989,15 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29881,7 +30053,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29931,7 +30109,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29981,7 +30165,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30023,7 +30213,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30070,7 +30266,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30121,7 +30325,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30171,7 +30381,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30230,7 +30446,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30293,7 +30517,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30349,7 +30581,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30402,7 +30640,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30452,7 +30696,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30511,7 +30761,15 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30567,7 +30825,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30609,7 +30873,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30651,7 +30921,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30703,7 +30981,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30759,7 +31043,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30814,7 +31106,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30852,7 +31152,13 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30896,7 +31202,15 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30934,7 +31248,13 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30976,7 +31296,15 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31018,7 +31346,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31068,7 +31402,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31120,7 +31462,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31167,7 +31515,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31207,7 +31561,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31263,7 +31623,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31302,7 +31670,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31347,7 +31721,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31402,7 +31784,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31447,7 +31835,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31505,7 +31899,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31553,7 +31955,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31605,7 +32013,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31662,7 +32078,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31711,7 +32133,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31770,7 +32198,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31821,7 +32257,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31877,7 +32319,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31929,7 +32379,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31977,7 +32433,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32037,7 +32499,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32095,7 +32565,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32148,7 +32624,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32195,7 +32677,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32241,7 +32729,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32299,7 +32793,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32352,7 +32854,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32408,7 +32916,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32466,7 +32982,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32521,7 +33043,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32583,7 +33111,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32639,7 +33175,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32694,7 +33236,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32741,7 +33289,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32801,7 +33355,15 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32861,7 +33423,15 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32910,7 +33480,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32966,7 +33542,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33013,7 +33595,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33069,7 +33657,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33118,7 +33712,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33177,7 +33777,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33237,7 +33843,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33303,7 +33917,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33364,7 +33984,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33422,7 +34048,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33491,7 +34123,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33543,7 +34183,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33593,7 +34239,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33651,7 +34303,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33715,7 +34375,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33775,7 +34441,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33898,7 +34572,15 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33951,7 +34633,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34011,7 +34699,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34072,7 +34768,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34132,7 +34834,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34201,7 +34909,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34278,7 +34994,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34330,7 +35052,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34381,7 +35109,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34437,7 +35171,15 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34490,7 +35232,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34551,7 +35299,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34597,7 +35353,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34661,7 +35425,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34715,7 +35485,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34777,7 +35555,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34825,7 +35609,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34873,7 +35663,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34930,7 +35726,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34989,7 +35793,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35041,7 +35853,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35096,7 +35914,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35157,7 +35983,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35214,7 +36046,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35268,7 +36106,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35329,7 +36173,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35376,7 +36228,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35456,7 +36314,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35507,7 +36371,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35558,7 +36428,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35611,7 +36489,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35665,7 +36551,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35715,7 +36607,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35769,7 +36669,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35814,7 +36720,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35874,7 +36786,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35915,7 +36835,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35953,7 +36879,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36003,7 +36935,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36051,7 +36991,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36094,7 +37040,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36150,7 +37102,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36199,7 +37159,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36247,7 +37213,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36291,7 +37265,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36335,7 +37315,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36391,7 +37377,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36439,7 +37433,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36499,7 +37499,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36559,7 +37565,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36629,7 +37641,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36697,7 +37717,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36736,7 +37762,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36877,7 +37909,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36945,7 +37985,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37008,7 +38054,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37084,7 +38136,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37133,7 +38193,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37198,7 +38264,15 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37282,7 +38356,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37361,7 +38441,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37400,7 +38486,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37460,7 +38552,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37506,7 +38606,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37556,7 +38662,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37618,7 +38732,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37670,7 +38790,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37763,7 +38889,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37819,7 +38951,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37857,7 +38995,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37925,7 +39069,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37992,7 +39142,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38058,7 +39214,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38101,7 +39263,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38159,7 +39327,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38216,7 +39390,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38285,7 +39465,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38354,7 +39542,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38401,7 +39597,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38449,7 +39651,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38495,7 +39705,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38543,7 +39761,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38591,7 +39815,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38647,7 +39877,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38688,7 +39926,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38732,7 +39976,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38808,7 +40058,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38885,7 +40141,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38972,7 +40234,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39033,7 +40303,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39077,7 +40355,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39118,7 +40402,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39172,7 +40464,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39226,7 +40526,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39261,7 +40567,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39296,7 +40608,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39339,7 +40657,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39376,7 +40702,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39413,7 +40747,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39451,7 +40793,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39487,7 +40835,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39523,7 +40877,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39602,7 +40964,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39653,7 +41021,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39704,7 +41078,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39753,7 +41135,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39799,7 +41187,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39856,7 +41250,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39897,7 +41299,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39942,7 +41350,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39990,7 +41406,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40036,7 +41458,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40092,7 +41520,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40143,7 +41579,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40200,7 +41642,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40247,7 +41695,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40296,7 +41752,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40355,7 +41819,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40412,7 +41882,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40468,7 +41944,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40522,7 +42004,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40573,7 +42063,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40629,7 +42125,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40686,7 +42188,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40755,7 +42263,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40820,7 +42336,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40884,7 +42406,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40930,7 +42458,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40970,7 +42506,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41014,7 +42556,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41063,7 +42613,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41120,7 +42676,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41176,7 +42740,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41229,7 +42799,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41289,7 +42865,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41331,7 +42915,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41379,7 +42969,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41424,7 +43022,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41487,7 +43091,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41536,7 +43148,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41584,7 +43202,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41623,7 +43247,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41667,7 +43297,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41714,7 +43350,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41764,7 +43406,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41840,7 +43488,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41887,7 +43541,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41936,7 +43596,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42028,7 +43694,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42231,7 +43903,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42295,7 +43973,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42376,7 +44060,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42464,7 +44154,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42504,7 +44200,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42543,7 +44245,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42590,7 +44298,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42639,7 +44355,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42689,7 +44413,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42735,7 +44467,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42774,7 +44512,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42820,7 +44564,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42872,7 +44624,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42929,7 +44687,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42987,7 +44753,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43037,7 +44809,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43093,7 +44871,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43138,7 +44922,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43187,7 +44977,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43238,7 +45036,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43286,7 +45090,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43339,7 +45149,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43381,7 +45199,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43427,7 +45251,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43467,7 +45299,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43511,7 +45349,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43559,7 +45405,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43608,7 +45460,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43662,7 +45520,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43731,7 +45597,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43777,7 +45649,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43829,7 +45707,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43883,7 +45769,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43931,7 +45823,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43991,7 +45889,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44038,7 +45944,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44091,7 +46003,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44144,7 +46064,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44204,7 +46130,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44242,7 +46176,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44289,7 +46229,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44329,7 +46277,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44365,7 +46319,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44410,7 +46370,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44457,7 +46425,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44508,7 +46482,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44555,7 +46535,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44611,7 +46597,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44662,7 +46656,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44711,7 +46711,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44760,7 +46766,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44810,7 +46824,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44851,7 +46871,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44899,7 +46925,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44943,7 +46977,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44988,7 +47028,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45038,7 +47086,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45085,7 +47139,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45141,7 +47201,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45194,7 +47262,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45254,7 +47328,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45316,7 +47398,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45373,7 +47461,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45417,7 +47511,15 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45473,7 +47575,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45544,7 +47652,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45600,7 +47714,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45640,7 +47760,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45696,7 +47822,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45744,7 +47876,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45790,7 +47928,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45838,7 +47984,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45886,7 +48040,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45933,7 +48093,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45988,7 +48154,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46090,7 +48264,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46143,7 +48323,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46197,7 +48383,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46235,7 +48427,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46275,7 +48473,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46312,7 +48516,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46356,7 +48566,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46398,7 +48616,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46444,7 +48668,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46492,7 +48724,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46543,7 +48781,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46597,7 +48843,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46648,7 +48900,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46708,7 +48966,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46766,7 +49032,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46828,7 +49100,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46889,7 +49169,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46938,7 +49224,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46981,7 +49273,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47031,7 +49329,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47087,7 +49391,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47138,7 +49450,15 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47186,7 +49506,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47230,7 +49556,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ 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 97c9205b80..dd3fcea210 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 @@ -246,7 +246,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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\"" }, { @@ -303,7 +308,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -366,7 +376,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -429,7 +444,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -483,7 +503,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -549,7 +574,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -622,7 +652,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -693,7 +728,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -775,7 +815,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -838,7 +883,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -910,7 +960,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -983,7 +1038,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1057,7 +1117,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1142,7 +1207,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1240,7 +1310,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1314,7 +1389,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1395,7 +1475,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1456,7 +1541,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1522,7 +1612,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1608,7 +1703,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1682,7 +1782,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1742,7 +1847,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -1800,7 +1910,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1875,7 +1990,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1951,7 +2071,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2021,7 +2146,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2109,7 +2239,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2184,7 +2319,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2260,7 +2400,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2337,7 +2482,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2403,7 +2553,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2472,7 +2627,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2542,7 +2702,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2613,7 +2778,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2695,7 +2865,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2780,7 +2955,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2862,7 +3042,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2944,7 +3129,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3016,7 +3206,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3101,7 +3296,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3183,7 +3383,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3253,7 +3458,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3319,7 +3529,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3395,7 +3610,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -3485,7 +3705,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3566,7 +3791,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3623,7 +3853,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3692,7 +3927,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3749,7 +3989,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3815,7 +4060,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3882,7 +4132,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3958,7 +4213,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4032,7 +4292,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4101,7 +4366,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4162,7 +4432,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4244,7 +4519,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4301,7 +4581,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4371,7 +4656,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4452,7 +4742,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4521,7 +4816,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4609,7 +4909,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4685,7 +4990,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4765,7 +5075,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4851,7 +5166,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4931,7 +5251,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5011,7 +5336,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5094,7 +5424,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -5168,7 +5503,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5257,7 +5597,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5336,7 +5681,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5420,7 +5770,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5495,7 +5850,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5573,7 +5933,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5660,7 +6025,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5744,7 +6114,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -5823,7 +6198,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5893,7 +6273,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5962,7 +6347,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6045,7 +6435,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6127,7 +6522,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6208,7 +6608,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6289,7 +6694,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6371,7 +6781,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6443,7 +6858,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6527,7 +6947,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6609,7 +7034,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6702,7 +7132,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6794,7 +7229,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6883,7 +7323,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6955,7 +7400,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7039,7 +7489,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7111,7 +7566,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7195,7 +7655,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7274,7 +7739,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7362,7 +7832,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7453,7 +7928,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7549,7 +8029,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7639,7 +8124,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -7724,7 +8214,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7826,7 +8321,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7901,7 +8401,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7976,7 +8481,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8063,7 +8573,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8157,7 +8672,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8247,7 +8767,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8423,7 +8948,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8505,7 +9035,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8596,7 +9131,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8705,7 +9245,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8793,7 +9338,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -8882,7 +9432,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8985,7 +9540,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9064,7 +9624,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9141,7 +9706,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9226,7 +9796,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9303,7 +9878,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9394,7 +9974,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9461,7 +10046,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9554,7 +10144,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9636,7 +10231,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9721,7 +10321,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9794,7 +10399,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9866,7 +10476,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9952,7 +10567,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10038,7 +10658,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10109,7 +10734,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10188,7 +10818,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10281,7 +10916,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10366,7 +11006,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -10446,7 +11091,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10537,7 +11187,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10606,7 +11261,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10723,7 +11383,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10807,7 +11472,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10885,7 +11555,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10951,7 +11626,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11030,7 +11710,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11098,7 +11783,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11189,7 +11879,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11249,7 +11944,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11327,7 +12027,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11399,7 +12104,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11466,7 +12176,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11553,7 +12268,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11626,7 +12346,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11701,7 +12426,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11767,7 +12497,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11834,7 +12569,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11921,7 +12661,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11993,7 +12738,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12071,7 +12821,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -12150,7 +12905,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12243,7 +13003,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12339,7 +13104,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12405,7 +13175,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12635,7 +13410,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12717,7 +13497,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -12794,7 +13579,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12891,7 +13681,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12969,7 +13764,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13061,7 +13861,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13184,7 +13989,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13304,7 +14114,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13361,7 +14176,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13436,7 +14256,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13505,7 +14330,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13583,7 +14413,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13675,7 +14510,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13754,7 +14594,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13887,7 +14732,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13968,7 +14818,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14028,7 +14883,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14134,7 +14994,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14243,7 +15108,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14344,7 +15214,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14416,7 +15291,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14501,7 +15381,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -14584,7 +15469,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14690,7 +15580,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14793,7 +15688,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14863,7 +15763,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14937,7 +15842,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15005,7 +15915,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15073,7 +15988,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15145,7 +16065,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15228,7 +16153,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15289,7 +16219,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15358,7 +16293,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15445,7 +16385,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15533,7 +16478,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15632,7 +16582,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15712,7 +16667,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15793,7 +16753,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15870,7 +16835,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15936,7 +16906,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16002,7 +16977,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16056,7 +17036,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16111,7 +17096,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16177,7 +17167,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16231,7 +17226,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16285,7 +17285,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16342,7 +17347,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16399,7 +17409,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16456,7 +17471,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16574,7 +17594,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16657,7 +17682,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16736,7 +17766,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16808,7 +17843,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -16878,7 +17918,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16965,7 +18010,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17025,7 +18075,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17094,7 +18149,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17163,7 +18223,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17233,7 +18298,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17317,7 +18387,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17392,7 +18467,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17483,7 +18563,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17555,7 +18640,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17627,7 +18717,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17718,7 +18813,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17803,7 +18903,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17886,7 +18991,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17969,7 +19079,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18041,7 +19156,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18101,7 +19221,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18170,7 +19295,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18241,7 +19371,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18322,7 +19457,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18402,7 +19542,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18480,7 +19625,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18569,7 +19719,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18644,7 +19799,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18728,7 +19888,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18813,7 +19978,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18917,7 +20087,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19011,7 +20186,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19106,7 +20286,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19168,7 +20353,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19242,7 +20432,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19314,7 +20509,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19383,7 +20583,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19455,7 +20660,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19528,7 +20738,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19594,7 +20809,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19662,7 +20882,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19739,7 +20964,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19816,7 +21046,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19932,7 +21167,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20009,7 +21249,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20083,7 +21328,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20208,7 +21458,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20440,7 +21695,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20526,7 +21786,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20636,7 +21901,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20762,7 +22032,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20825,7 +22100,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20886,7 +22166,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20959,7 +22244,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21032,7 +22322,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21104,7 +22399,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21170,7 +22470,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21236,7 +22541,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21308,7 +22618,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21389,7 +22704,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21476,7 +22796,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21560,7 +22885,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21641,7 +22971,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21723,7 +23058,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21792,7 +23132,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21865,7 +23210,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21940,7 +23290,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -22013,7 +23368,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22094,7 +23454,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22160,7 +23525,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22230,7 +23600,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22300,7 +23675,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -22367,7 +23747,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22448,7 +23833,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22531,7 +23921,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22594,7 +23989,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22666,7 +24066,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22729,7 +24134,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22798,7 +24208,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22870,7 +24285,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -22945,7 +24365,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23029,7 +24454,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23128,7 +24558,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23203,7 +24638,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23284,7 +24724,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23365,7 +24810,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -23438,7 +24888,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23531,7 +24986,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23606,7 +25066,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23688,7 +25153,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23764,7 +25234,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -23855,7 +25330,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23912,7 +25392,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23981,7 +25466,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24035,7 +25525,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24092,7 +25587,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24163,7 +25663,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24232,7 +25737,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24316,7 +25826,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24388,7 +25903,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24474,7 +25994,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24554,7 +26079,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24629,7 +26159,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24695,7 +26230,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -24759,7 +26299,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24834,7 +26379,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24904,7 +26454,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24974,7 +26529,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25047,7 +26607,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25118,7 +26683,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25203,7 +26773,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25285,7 +26860,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25381,7 +26961,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25471,7 +27056,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25556,7 +27146,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25624,7 +27219,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25705,7 +27305,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25810,7 +27415,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25891,7 +27501,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25954,7 +27569,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26034,7 +27654,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26109,7 +27734,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26181,7 +27811,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26253,7 +27888,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26325,7 +27965,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -26395,7 +28040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26479,7 +28129,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26627,7 +28282,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26687,7 +28347,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26765,7 +28430,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26836,7 +28506,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26899,7 +28574,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26956,7 +28636,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27025,7 +28710,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27091,7 +28781,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27160,7 +28855,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27226,7 +28926,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27293,7 +28998,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27374,7 +29084,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27449,7 +29164,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27529,7 +29249,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27604,7 +29329,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27667,7 +29397,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27739,7 +29474,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27815,7 +29555,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27894,7 +29639,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27970,7 +29720,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28049,7 +29804,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -28126,7 +29886,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28217,7 +29982,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28305,7 +30075,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28399,7 +30174,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28487,7 +30267,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -28559,7 +30344,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28634,7 +30424,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -28720,7 +30515,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28788,7 +30588,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28855,7 +30660,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28924,7 +30734,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { 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 da7634fc65..5842dca6fe 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 @@ -29078,7 +29078,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29115,7 +29121,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29153,7 +29165,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29191,7 +29209,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29227,7 +29251,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29268,7 +29298,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29317,7 +29353,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29365,7 +29407,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29420,7 +29468,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29462,7 +29518,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29508,7 +29570,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29558,7 +29628,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29607,7 +29683,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29663,7 +29745,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29728,7 +29818,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29777,7 +29873,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29834,7 +29936,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29876,7 +29986,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29916,7 +30032,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29973,7 +30095,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30013,7 +30143,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30050,7 +30186,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30098,7 +30240,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30148,7 +30298,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30192,7 +30350,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30246,7 +30410,15 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30302,7 +30474,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30352,7 +30530,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30402,7 +30586,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30444,7 +30634,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30491,7 +30687,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30542,7 +30746,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30592,7 +30802,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30651,7 +30867,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30714,7 +30938,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30770,7 +31002,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30823,7 +31061,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30873,7 +31117,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30932,7 +31182,15 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30988,7 +31246,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31030,7 +31294,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31072,7 +31342,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31124,7 +31402,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31180,7 +31464,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31235,7 +31527,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31273,7 +31573,13 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31317,7 +31623,15 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31355,7 +31669,13 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31397,7 +31717,15 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31439,7 +31767,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31489,7 +31823,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31541,7 +31883,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31588,7 +31936,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31627,7 +31981,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31680,18 +32040,26 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - - label: Atlas CLI + - label: curl (Digest) lang: cURL - source: atlas api updateDataProtectionSettings --help + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ + -d '{ }' + - label: Atlas CLI + lang: cURL + source: atlas api updateDataProtectionSettings --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess: get: description: Returns all cloud provider access roles with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -31718,7 +32086,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31763,7 +32137,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31818,7 +32200,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31863,7 +32251,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31921,7 +32315,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31969,7 +32371,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32021,7 +32429,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32078,7 +32494,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32127,7 +32549,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32186,7 +32614,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32237,7 +32673,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32293,7 +32735,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32345,7 +32795,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32393,7 +32849,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32453,7 +32915,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32511,7 +32981,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32564,7 +33040,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32611,7 +33093,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32657,7 +33145,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32715,7 +33209,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32768,7 +33270,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32824,7 +33332,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32882,7 +33398,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32937,7 +33459,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32999,7 +33527,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33055,7 +33591,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33110,7 +33652,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33157,7 +33705,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33217,7 +33771,15 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33277,7 +33839,15 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33326,7 +33896,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33382,7 +33958,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33429,7 +34011,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33485,7 +34073,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33534,7 +34128,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33593,7 +34193,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33653,7 +34259,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33719,7 +34333,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33780,7 +34400,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33838,7 +34464,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33907,7 +34539,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33959,7 +34599,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34009,7 +34655,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34067,7 +34719,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34131,7 +34791,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34191,7 +34857,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34314,7 +34988,15 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34367,7 +35049,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34427,7 +35115,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34488,7 +35184,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34548,7 +35250,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34617,7 +35325,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34694,11 +35410,17 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: Atlas CLI @@ -34746,7 +35468,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34797,7 +35525,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34853,7 +35587,15 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34906,7 +35648,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34967,7 +35715,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35013,7 +35769,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35077,7 +35841,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35131,7 +35901,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35193,7 +35971,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35241,7 +36025,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35289,7 +36079,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35346,7 +36142,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35405,7 +36209,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35457,7 +36269,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35512,7 +36330,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35573,7 +36399,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35630,7 +36462,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35684,7 +36522,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35745,7 +36589,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35792,7 +36644,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35872,7 +36730,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35923,7 +36787,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35974,7 +36844,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36027,7 +36905,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36081,7 +36967,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36131,7 +37023,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36185,7 +37085,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36230,7 +37136,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36290,7 +37202,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36331,7 +37251,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36369,7 +37295,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36419,7 +37351,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36467,7 +37407,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36510,7 +37456,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36566,7 +37518,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36615,7 +37575,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36663,7 +37629,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36707,7 +37681,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36751,7 +37731,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36807,7 +37793,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36855,7 +37849,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36915,7 +37915,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36975,7 +37981,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37045,7 +38057,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37113,7 +38133,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37152,7 +38178,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37293,7 +38325,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37361,7 +38401,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37424,7 +38470,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37500,7 +38552,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37549,7 +38609,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37614,7 +38680,15 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37698,11 +38772,17 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: Atlas CLI @@ -37777,7 +38857,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37816,7 +38902,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37876,7 +38968,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37922,7 +39022,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37972,7 +39078,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38034,7 +39148,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38086,7 +39206,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38179,7 +39305,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38235,7 +39367,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38273,7 +39411,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38341,7 +39485,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38408,7 +39558,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38474,7 +39630,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38517,7 +39679,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38575,7 +39743,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38632,7 +39806,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38701,7 +39881,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38770,7 +39958,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38817,7 +40013,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38865,7 +40067,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38911,7 +40121,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38959,7 +40177,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39007,7 +40231,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39063,7 +40293,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39104,7 +40342,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39148,7 +40392,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39224,7 +40474,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39301,7 +40557,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39388,7 +40650,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39449,7 +40719,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39493,7 +40771,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39534,7 +40818,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39588,7 +40880,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39642,7 +40942,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39677,7 +40983,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39712,7 +41024,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39755,7 +41073,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39792,7 +41118,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39829,7 +41163,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39867,7 +41209,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39903,7 +41251,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39939,7 +41293,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40018,7 +41380,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40069,7 +41437,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40120,7 +41494,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40169,7 +41551,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40215,7 +41603,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40272,7 +41666,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40313,7 +41715,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40358,7 +41766,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40406,7 +41822,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40452,7 +41874,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40508,7 +41936,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40559,7 +41995,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40616,7 +42058,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40663,7 +42111,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40712,7 +42168,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40771,7 +42235,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40828,7 +42298,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40884,7 +42360,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40938,7 +42420,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40989,7 +42479,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41045,7 +42541,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41102,7 +42604,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41171,7 +42679,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41236,7 +42752,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41300,7 +42822,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41346,7 +42874,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41386,7 +42922,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41430,7 +42972,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41479,7 +43029,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41536,7 +43092,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41592,7 +43156,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41645,7 +43215,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41705,7 +43281,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41747,7 +43331,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41795,7 +43385,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41840,7 +43438,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41903,7 +43507,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41952,7 +43564,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42000,7 +43618,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42039,7 +43663,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42083,7 +43713,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42130,7 +43766,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42180,7 +43822,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42256,7 +43904,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42303,7 +43957,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42352,7 +44012,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42444,7 +44110,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42647,7 +44319,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42711,7 +44389,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42792,7 +44476,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42880,7 +44570,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42920,7 +44616,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42959,7 +44661,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43006,7 +44714,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43055,7 +44771,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43105,7 +44829,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43151,7 +44883,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43190,7 +44928,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43236,7 +44980,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43288,7 +45040,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43345,7 +45103,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43403,7 +45169,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43453,7 +45225,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43509,7 +45287,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43554,7 +45338,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43603,7 +45393,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43654,7 +45452,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43702,7 +45506,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43755,7 +45565,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43797,7 +45615,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43842,7 +45666,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43889,7 +45721,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43932,7 +45770,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43984,7 +45828,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44040,7 +45892,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44082,7 +45942,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44128,7 +45994,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44168,7 +46042,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44212,7 +46092,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44260,7 +46148,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44309,7 +46203,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44363,7 +46263,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44432,7 +46340,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44478,7 +46392,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44530,7 +46450,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44584,7 +46512,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44632,7 +46566,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44692,7 +46632,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44739,7 +46687,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44792,7 +46746,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44845,7 +46807,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44905,7 +46873,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44943,7 +46919,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44990,7 +46972,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45030,7 +47020,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45066,7 +47062,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45111,7 +47113,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45158,7 +47168,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45209,7 +47225,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45256,7 +47278,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45312,7 +47340,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45363,7 +47399,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45412,7 +47454,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45461,7 +47509,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45511,7 +47567,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45552,7 +47614,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45600,7 +47668,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45644,7 +47720,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45689,7 +47771,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45739,7 +47829,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45786,7 +47882,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45842,7 +47944,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45895,7 +48005,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45955,7 +48071,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46017,7 +48141,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46074,7 +48204,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46118,7 +48254,15 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46174,7 +48318,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46245,7 +48395,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46301,7 +48457,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46341,7 +48503,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46397,7 +48565,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46445,7 +48619,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46491,7 +48671,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46539,7 +48727,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46587,7 +48783,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46634,7 +48836,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46689,7 +48897,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46791,7 +49007,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46844,7 +49066,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46898,7 +49126,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46936,7 +49170,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46976,7 +49216,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47013,7 +49259,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47057,7 +49309,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47099,7 +49359,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47143,7 +49409,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47187,7 +49461,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47230,7 +49510,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47282,7 +49568,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47330,7 +49624,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47381,7 +49681,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47431,7 +49739,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47471,7 +49785,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47517,7 +49837,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47565,7 +49893,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47616,7 +49950,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47670,7 +50012,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47721,7 +50069,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47781,7 +50135,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47839,7 +50201,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47901,7 +50269,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47962,7 +50338,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48011,7 +50393,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48054,7 +50442,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48104,7 +50498,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48160,7 +50560,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48211,7 +50619,15 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48259,7 +50675,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48303,7 +50725,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ 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 1f6684c720..b902977870 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 @@ -250,7 +250,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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\"" }, { @@ -307,7 +312,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -370,7 +380,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -433,7 +448,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -487,7 +507,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -553,7 +578,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -626,7 +656,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -697,7 +732,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -779,7 +819,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -842,7 +887,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -914,7 +964,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -987,7 +1042,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1061,7 +1121,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1146,7 +1211,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1244,7 +1314,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1316,7 +1391,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1383,7 +1463,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1454,7 +1539,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1533,7 +1623,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1600,7 +1695,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1660,7 +1760,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1726,7 +1831,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1812,7 +1922,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1886,7 +2001,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1946,7 +2066,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -2004,7 +2129,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2079,7 +2209,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2155,7 +2290,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2225,7 +2365,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2313,7 +2458,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2388,7 +2538,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2464,7 +2619,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2541,7 +2701,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2607,7 +2772,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2676,7 +2846,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2746,7 +2921,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2817,7 +2997,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2899,7 +3084,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2984,7 +3174,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3066,7 +3261,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3148,7 +3348,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3220,7 +3425,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3305,7 +3515,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3387,7 +3602,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3457,7 +3677,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3523,7 +3748,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3599,7 +3829,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -3689,7 +3924,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3770,7 +4010,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3827,7 +4072,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3896,7 +4146,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3953,7 +4208,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4019,7 +4279,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4086,7 +4351,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4162,7 +4432,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4236,7 +4511,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4305,7 +4585,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4366,7 +4651,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4448,7 +4738,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4505,7 +4800,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4575,7 +4875,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4656,7 +4961,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4725,7 +5035,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4813,7 +5128,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4889,7 +5209,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4969,7 +5294,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5055,7 +5385,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5135,7 +5470,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5215,7 +5555,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5298,7 +5643,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -5372,7 +5722,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5461,7 +5816,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5540,7 +5900,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5624,7 +5989,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5699,7 +6069,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5777,7 +6152,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5864,7 +6244,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5948,7 +6333,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6027,7 +6417,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6097,7 +6492,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6166,7 +6566,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6249,7 +6654,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6331,7 +6741,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6412,7 +6827,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6493,7 +6913,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6575,7 +7000,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6647,7 +7077,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6731,7 +7166,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6813,7 +7253,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6906,7 +7351,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6998,7 +7448,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7087,7 +7542,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7159,7 +7619,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7243,7 +7708,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7315,7 +7785,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7399,7 +7874,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7478,7 +7958,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7566,7 +8051,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7638,7 +8128,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7730,7 +8225,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7822,7 +8322,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7905,7 +8410,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7996,7 +8506,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8092,7 +8607,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8182,7 +8702,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -8267,7 +8792,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8369,7 +8899,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8444,7 +8979,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8519,7 +9059,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8606,7 +9151,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8700,7 +9250,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8790,7 +9345,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8966,7 +9526,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9048,7 +9613,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9139,7 +9709,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9248,7 +9823,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9336,7 +9916,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -9425,7 +10010,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9528,7 +10118,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9607,7 +10202,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9684,7 +10284,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9769,7 +10374,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9846,7 +10456,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9937,7 +10552,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10004,7 +10624,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10097,7 +10722,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10179,7 +10809,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10264,7 +10899,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10337,7 +10977,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10409,7 +11054,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10495,7 +11145,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10581,7 +11236,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10652,7 +11312,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10731,7 +11396,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10824,7 +11494,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10909,7 +11584,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -10989,7 +11669,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11080,7 +11765,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11149,7 +11839,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11238,7 +11933,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11380,7 +12080,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11497,7 +12202,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11557,7 +12267,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11641,7 +12356,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11719,7 +12439,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11785,7 +12510,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11864,7 +12594,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11932,7 +12667,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12023,7 +12763,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12083,7 +12828,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12161,7 +12911,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12233,7 +12988,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -12300,7 +13060,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12387,7 +13152,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12460,7 +13230,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12535,7 +13310,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12601,7 +13381,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -12668,7 +13453,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12755,7 +13545,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12827,7 +13622,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12905,7 +13705,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -12984,7 +13789,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13077,7 +13887,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13173,7 +13988,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13239,7 +14059,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13469,7 +14294,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13551,7 +14381,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13628,7 +14463,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13725,7 +14565,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13803,7 +14648,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13895,7 +14745,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14018,7 +14873,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14138,7 +14998,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14195,7 +15060,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14270,7 +15140,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14339,7 +15214,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14417,7 +15297,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14509,7 +15394,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -14588,7 +15478,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14721,7 +15616,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14802,7 +15702,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14862,7 +15767,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14968,7 +15878,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15077,7 +15992,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15178,7 +16098,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15250,7 +16175,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15335,7 +16265,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15418,7 +16353,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15524,7 +16464,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15627,7 +16572,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15697,7 +16647,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15771,7 +16726,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15839,7 +16799,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15907,7 +16872,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15979,7 +16949,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16062,7 +17037,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16123,7 +17103,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16192,7 +17177,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16279,7 +17269,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -16367,7 +17362,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16466,7 +17466,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16546,7 +17551,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16627,7 +17637,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16704,7 +17719,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16770,7 +17790,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16836,7 +17861,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16890,7 +17920,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16945,7 +17980,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17011,7 +18051,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17065,7 +18110,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17119,7 +18169,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17176,7 +18231,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17233,7 +18293,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17290,7 +18355,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17408,7 +18478,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17491,7 +18566,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17570,7 +18650,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17642,7 +18727,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17712,7 +18802,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17799,7 +18894,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17859,7 +18959,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17928,7 +19033,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17997,7 +19107,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18067,7 +19182,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18151,7 +19271,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18226,7 +19351,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18317,7 +19447,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18389,7 +19524,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18461,7 +19601,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18552,7 +19697,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18637,7 +19787,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18720,7 +19875,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18803,7 +19963,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18875,7 +20040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18935,7 +20105,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19004,7 +20179,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19075,7 +20255,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19156,7 +20341,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19236,7 +20426,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19314,7 +20509,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19403,7 +20603,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19478,7 +20683,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19562,7 +20772,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19647,7 +20862,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19751,7 +20971,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19845,7 +21070,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19940,7 +21170,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20002,7 +21237,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20076,7 +21316,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20148,7 +21393,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20217,7 +21467,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20289,7 +21544,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -20362,7 +21622,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20428,7 +21693,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20496,7 +21766,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20562,7 +21837,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20639,7 +21919,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20716,7 +22001,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20832,7 +22122,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20909,7 +22204,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20983,7 +22283,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21108,7 +22413,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21340,7 +22650,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21426,7 +22741,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21536,7 +22856,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21662,7 +22987,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21779,7 +23109,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21842,7 +23177,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21903,7 +23243,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21976,7 +23321,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22049,7 +23399,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22121,7 +23476,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22187,7 +23547,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22253,7 +23618,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22325,7 +23695,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22406,7 +23781,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22493,7 +23873,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22577,7 +23962,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22658,7 +24048,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22740,7 +24135,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22809,7 +24209,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22882,7 +24287,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -22957,7 +24367,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -23030,7 +24445,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23111,7 +24531,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23177,7 +24602,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23247,7 +24677,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23317,7 +24752,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -23384,7 +24824,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23465,7 +24910,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23548,7 +24998,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23611,7 +25066,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23683,7 +25143,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23746,7 +25211,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23815,7 +25285,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23887,7 +25362,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -23962,7 +25442,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24046,7 +25531,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24145,7 +25635,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24220,7 +25715,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24301,7 +25801,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24382,7 +25887,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24455,7 +25965,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24548,7 +26063,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24623,7 +26143,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24705,7 +26230,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24781,7 +26311,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24872,7 +26407,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24929,7 +26469,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24998,7 +26543,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25052,7 +26602,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25109,7 +26664,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25180,7 +26740,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25249,7 +26814,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25333,7 +26903,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25405,7 +26980,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25491,7 +27071,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25571,7 +27156,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25646,7 +27236,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25712,7 +27307,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -25776,7 +27376,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25851,7 +27456,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25921,7 +27531,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25991,7 +27606,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26064,7 +27684,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -26135,7 +27760,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26220,7 +27850,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26302,7 +27937,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26398,7 +28038,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26488,7 +28133,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -26573,7 +28223,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26641,7 +28296,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26722,7 +28382,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26827,7 +28492,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26908,7 +28578,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26971,7 +28646,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27051,7 +28731,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27126,7 +28811,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27198,7 +28888,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27270,7 +28965,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27342,7 +29042,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27412,7 +29117,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27496,7 +29206,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27644,7 +29359,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27704,7 +29424,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27782,7 +29507,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27853,7 +29583,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27916,7 +29651,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27973,7 +29713,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28042,7 +29787,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28108,7 +29858,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28177,7 +29932,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28243,7 +30003,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -28310,7 +30075,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28391,7 +30161,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28466,7 +30241,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28546,7 +30326,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28621,7 +30406,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -28684,7 +30474,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28756,7 +30551,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28832,7 +30632,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28911,7 +30716,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28987,7 +30797,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29066,7 +30881,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -29143,7 +30963,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29234,7 +31059,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29322,7 +31152,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29416,7 +31251,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29504,7 +31344,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -29576,7 +31421,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29651,7 +31501,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -29737,7 +31592,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29780,7 +31640,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29848,7 +31713,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29915,7 +31785,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29984,7 +31859,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { 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 d3cc70dc82..44ba614f7f 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 @@ -29599,7 +29599,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29636,7 +29642,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29674,7 +29686,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29712,7 +29730,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29748,7 +29772,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29789,7 +29819,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29838,7 +29874,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29886,7 +29928,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29941,7 +29989,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29983,7 +30039,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30029,7 +30091,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30079,7 +30149,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30128,7 +30204,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30184,7 +30266,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30249,7 +30339,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30299,7 +30395,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30345,7 +30449,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30392,7 +30502,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30447,7 +30563,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30493,7 +30617,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30532,7 +30662,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30572,7 +30708,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30629,7 +30771,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30669,7 +30819,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30706,7 +30862,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30754,7 +30916,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30804,7 +30974,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30848,7 +31026,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30902,7 +31086,15 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30958,7 +31150,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31008,7 +31206,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31058,7 +31262,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31100,7 +31310,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31147,7 +31363,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31198,7 +31422,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31248,7 +31478,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31307,7 +31543,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31370,7 +31614,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31426,7 +31678,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31479,7 +31737,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31529,7 +31793,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31588,7 +31858,15 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31644,7 +31922,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31686,7 +31970,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31728,7 +32018,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31780,7 +32078,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31836,7 +32140,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31891,7 +32203,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31929,7 +32249,13 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31973,7 +32299,15 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32011,7 +32345,13 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32053,7 +32393,15 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32095,7 +32443,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32145,7 +32499,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32197,11 +32559,17 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI @@ -32244,7 +32612,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32283,7 +32657,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32336,7 +32716,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32374,7 +32762,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32419,7 +32813,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32474,7 +32876,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32519,7 +32927,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32577,7 +32991,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32625,7 +33047,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32677,7 +33105,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32734,7 +33170,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32783,7 +33225,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32842,7 +33290,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32944,7 +33400,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33001,7 +33463,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33049,7 +33517,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33105,7 +33579,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33157,7 +33639,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33205,7 +33693,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33265,7 +33759,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33323,7 +33825,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33376,7 +33884,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33423,7 +33937,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33469,7 +33989,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33527,7 +34053,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33580,7 +34114,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33636,7 +34176,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33694,7 +34242,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33749,7 +34303,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33811,7 +34371,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33867,7 +34435,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33922,7 +34496,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33969,7 +34549,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34029,7 +34615,15 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34089,7 +34683,15 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34138,7 +34740,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34194,7 +34802,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34241,7 +34855,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34297,7 +34917,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34346,7 +34972,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34405,7 +35037,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34453,7 +35091,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34514,7 +35158,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34577,7 +35229,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34634,7 +35294,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34696,7 +35364,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34762,7 +35438,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34823,7 +35505,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34881,7 +35569,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34950,7 +35644,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35002,7 +35704,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35052,7 +35760,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35110,7 +35824,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35174,11 +35896,17 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI @@ -35234,7 +35962,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35357,7 +36093,15 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35410,7 +36154,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35470,7 +36220,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35531,7 +36289,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35591,7 +36355,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35660,7 +36430,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35737,7 +36515,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35789,7 +36573,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35840,7 +36630,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35896,7 +36692,15 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35949,7 +36753,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36010,7 +36820,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36056,7 +36874,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36120,7 +36946,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36174,7 +37006,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36236,7 +37076,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36284,7 +37130,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36332,7 +37184,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36389,7 +37247,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36448,7 +37314,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36500,7 +37374,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36555,7 +37435,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36616,7 +37504,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36673,7 +37567,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36727,7 +37627,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36788,7 +37694,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36835,7 +37749,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36915,7 +37835,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36966,7 +37892,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37017,7 +37949,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37070,7 +38010,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37111,7 +38059,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37163,7 +38117,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37213,7 +38173,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37267,7 +38235,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37312,7 +38286,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37372,7 +38352,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37413,7 +38401,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37451,7 +38445,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37501,7 +38501,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37549,7 +38557,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37592,7 +38606,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37648,7 +38668,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37697,7 +38725,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37745,7 +38779,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37789,7 +38831,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37833,7 +38881,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37889,7 +38943,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37937,7 +38999,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37997,7 +39065,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38057,7 +39131,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38127,11 +39207,19 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ @@ -38195,7 +39283,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38234,7 +39328,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38375,7 +39475,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38443,7 +39551,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38506,7 +39620,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38582,7 +39702,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38631,7 +39759,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38696,7 +39830,15 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38780,7 +39922,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38859,7 +40007,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38898,7 +40052,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38958,7 +40118,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39004,7 +40172,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39054,7 +40228,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39116,7 +40298,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39168,7 +40356,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39261,7 +40455,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39317,7 +40517,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39355,7 +40561,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39423,7 +40635,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39490,7 +40708,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39556,7 +40780,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39599,7 +40829,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39657,7 +40893,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39714,7 +40956,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39783,7 +41031,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39852,7 +41108,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39899,7 +41163,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39947,7 +41217,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39993,7 +41271,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40041,7 +41327,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40089,7 +41381,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40145,7 +41443,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40186,7 +41492,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40230,7 +41542,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40306,7 +41624,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40383,7 +41707,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40470,7 +41800,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40531,7 +41869,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40575,7 +41921,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40616,7 +41968,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40670,7 +42030,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40724,7 +42092,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40759,7 +42133,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40794,7 +42174,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40837,7 +42223,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40874,7 +42268,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40911,7 +42313,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40949,7 +42359,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40985,7 +42401,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41021,7 +42443,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41100,7 +42530,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41151,7 +42587,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41202,7 +42644,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41251,7 +42701,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41297,7 +42753,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41354,7 +42816,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41395,7 +42865,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41440,7 +42916,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41488,7 +42972,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41534,7 +43024,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41590,7 +43086,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41641,7 +43145,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41698,7 +43208,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41745,7 +43261,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41794,7 +43318,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41853,7 +43385,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41910,7 +43448,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41966,7 +43510,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42020,7 +43570,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42071,7 +43629,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42127,7 +43691,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42184,7 +43754,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42253,7 +43829,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42318,7 +43902,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42382,7 +43972,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42428,7 +44024,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42468,7 +44072,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42512,7 +44122,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42561,7 +44179,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42618,7 +44242,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42674,7 +44306,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42727,7 +44365,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42787,7 +44431,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42829,7 +44481,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42877,7 +44535,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42922,7 +44588,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42985,7 +44657,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43034,7 +44714,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43082,7 +44768,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43121,7 +44813,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43165,7 +44863,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43244,7 +44948,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43283,7 +44993,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43330,7 +45046,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43380,7 +45102,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43456,7 +45184,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43503,7 +45237,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43552,7 +45292,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43644,7 +45390,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43847,7 +45599,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43911,7 +45669,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43992,7 +45756,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44080,7 +45850,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44120,7 +45896,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44159,7 +45941,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44206,7 +45994,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44255,7 +46051,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44305,7 +46109,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44351,7 +46163,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44390,7 +46208,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44436,7 +46260,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44488,7 +46320,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44545,7 +46383,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44603,7 +46449,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44653,7 +46505,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44709,7 +46567,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44754,7 +46618,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44803,7 +46673,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44854,7 +46732,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44902,7 +46786,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44955,7 +46845,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44997,7 +46895,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45042,7 +46946,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45089,7 +47001,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45132,7 +47050,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45184,7 +47108,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45240,7 +47172,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45282,7 +47222,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45328,7 +47274,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45368,7 +47322,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45412,7 +47372,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45460,7 +47428,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45509,7 +47483,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45563,7 +47543,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45632,7 +47620,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45678,7 +47672,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45730,7 +47730,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45784,7 +47792,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45832,7 +47846,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45892,7 +47912,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45939,7 +47967,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45992,7 +48026,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46045,7 +48087,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46105,7 +48153,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46143,7 +48199,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46190,7 +48252,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46230,7 +48300,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46266,7 +48342,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46311,7 +48393,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46358,7 +48448,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46409,7 +48505,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46456,7 +48558,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46512,7 +48620,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46563,7 +48679,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46612,7 +48734,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46661,7 +48789,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46711,7 +48847,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46752,7 +48894,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46800,7 +48948,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46844,7 +49000,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46889,7 +49051,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46939,7 +49109,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46986,7 +49162,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47042,7 +49224,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47095,7 +49285,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47155,7 +49351,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47217,7 +49421,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47274,7 +49484,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47318,7 +49534,15 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47374,7 +49598,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47445,7 +49675,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47501,7 +49737,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47541,7 +49783,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47597,7 +49845,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47645,7 +49899,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47691,7 +49951,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47739,7 +50007,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47787,7 +50063,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47834,7 +50116,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47889,7 +50177,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47991,7 +50287,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48044,7 +50346,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48098,7 +50406,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48136,7 +50450,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48176,7 +50496,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48213,7 +50539,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48257,7 +50589,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48299,7 +50639,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48343,7 +50689,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48387,7 +50741,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48430,7 +50790,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48482,7 +50848,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48530,7 +50904,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48581,7 +50961,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48631,7 +51019,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48671,7 +51065,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48717,7 +51117,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48765,7 +51173,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48816,7 +51230,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48870,7 +51292,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48921,7 +51349,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48981,7 +51415,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49039,7 +51481,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49101,7 +51549,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49162,7 +51618,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49211,7 +51673,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49254,7 +51722,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49304,7 +51778,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49360,7 +51840,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49392,7 +51880,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49441,7 +51935,15 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49489,7 +51991,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49533,7 +52041,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ 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 268c1beb70..4eb878446a 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 @@ -250,7 +250,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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\"" }, { @@ -307,7 +312,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -370,7 +380,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -433,7 +448,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -487,7 +507,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -553,7 +578,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -626,7 +656,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -697,7 +732,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -779,7 +819,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -842,7 +887,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -914,7 +964,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -987,7 +1042,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1061,7 +1121,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1146,7 +1211,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1244,7 +1314,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1316,7 +1391,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1383,7 +1463,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1454,7 +1539,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1533,7 +1623,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1600,7 +1695,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1660,7 +1760,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1726,7 +1831,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1812,7 +1922,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1886,7 +2001,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1946,7 +2066,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -2004,7 +2129,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2079,7 +2209,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2155,7 +2290,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2225,7 +2365,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2313,7 +2458,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2388,7 +2538,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2464,7 +2619,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2541,7 +2701,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2607,7 +2772,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2676,7 +2846,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2746,7 +2921,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2817,7 +2997,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2899,7 +3084,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2984,7 +3174,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3066,7 +3261,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3148,7 +3348,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3220,7 +3425,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3304,7 +3514,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3385,7 +3600,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3455,7 +3675,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3521,7 +3746,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3597,7 +3827,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -3687,7 +3922,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3768,7 +4008,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3825,7 +4070,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3894,7 +4144,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3951,7 +4206,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4017,7 +4277,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4083,7 +4348,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4210,7 +4480,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4283,7 +4558,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4385,7 +4665,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4445,7 +4730,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4527,7 +4817,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4584,7 +4879,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4654,7 +4954,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4735,7 +5040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4804,7 +5114,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4892,7 +5207,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4968,7 +5288,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5048,7 +5373,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5134,7 +5464,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5214,7 +5549,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5294,7 +5634,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5377,7 +5722,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -5451,7 +5801,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5540,7 +5895,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5619,7 +5979,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5703,7 +6068,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5778,7 +6148,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5856,7 +6231,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5943,7 +6323,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6027,7 +6412,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6106,7 +6496,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6176,7 +6571,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6245,7 +6645,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6328,7 +6733,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6410,7 +6820,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6491,7 +6906,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6572,7 +6992,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6654,7 +7079,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6726,7 +7156,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6810,7 +7245,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6892,7 +7332,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6985,7 +7430,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7077,7 +7527,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7166,7 +7621,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7238,7 +7698,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7322,7 +7787,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7394,7 +7864,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7478,7 +7953,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7557,7 +8037,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7645,7 +8130,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7717,7 +8207,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7809,7 +8304,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7901,7 +8401,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7984,7 +8489,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8075,7 +8585,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8171,7 +8686,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8261,7 +8781,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -8346,7 +8871,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8448,7 +8978,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8523,7 +9058,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8598,7 +9138,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8685,7 +9230,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8779,7 +9329,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8869,7 +9424,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9045,7 +9605,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9127,7 +9692,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9218,7 +9788,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9327,7 +9902,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9415,7 +9995,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -9504,7 +10089,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9607,7 +10197,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9686,7 +10281,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9763,7 +10363,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9848,7 +10453,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9925,7 +10535,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10016,7 +10631,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10083,7 +10703,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10176,7 +10801,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10258,7 +10888,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10343,7 +10978,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10418,7 +11058,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10488,7 +11133,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10572,7 +11222,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10656,7 +11311,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10745,7 +11405,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10833,7 +11498,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10940,7 +11610,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11043,7 +11718,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11144,7 +11824,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11259,7 +11944,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11347,7 +12037,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11443,7 +12138,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11543,7 +12243,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11613,7 +12318,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11692,7 +12402,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11785,7 +12500,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11870,7 +12590,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11950,7 +12675,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12041,7 +12771,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12110,7 +12845,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12199,7 +12939,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12341,7 +13086,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12430,7 +13180,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12511,7 +13266,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12628,7 +13388,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12688,7 +13453,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12772,7 +13542,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12850,7 +13625,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12916,7 +13696,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12995,7 +13780,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13063,7 +13853,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13154,7 +13949,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13214,7 +14014,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13292,7 +14097,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13364,7 +14174,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13431,7 +14246,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13518,7 +14338,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13591,7 +14416,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13666,7 +14496,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13732,7 +14567,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13799,7 +14639,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13886,7 +14731,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13958,7 +14808,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14036,7 +14891,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -14115,7 +14975,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14208,7 +15073,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14304,7 +15174,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14370,7 +15245,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14600,7 +15480,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14682,7 +15567,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -14759,7 +15649,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14856,7 +15751,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14934,7 +15834,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15026,7 +15931,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15149,7 +16059,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15269,7 +16184,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15326,7 +16246,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15401,7 +16326,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15470,7 +16400,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15548,7 +16483,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15640,7 +16580,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15719,7 +16664,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15852,7 +16802,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15933,7 +16888,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15993,7 +16953,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16099,7 +17064,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16208,7 +17178,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16309,7 +17284,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16381,7 +17361,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16466,7 +17451,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -16549,7 +17539,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16655,7 +17650,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16758,7 +17758,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16828,7 +17833,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16902,7 +17912,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16970,7 +17985,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17038,7 +18058,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17110,7 +18135,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17193,7 +18223,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17254,7 +18289,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17323,7 +18363,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17410,7 +18455,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17498,7 +18548,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17597,7 +18652,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17675,7 +18735,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17753,7 +18818,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17829,7 +18899,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17895,7 +18970,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17961,7 +19041,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18015,7 +19100,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18070,7 +19160,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18136,7 +19231,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18190,7 +19290,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18244,7 +19349,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18301,7 +19411,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18358,7 +19473,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18415,7 +19535,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18533,7 +19658,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18616,7 +19746,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18695,7 +19830,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18767,7 +19907,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18837,7 +19982,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18924,7 +20074,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18984,7 +20139,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19053,7 +20213,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19122,7 +20287,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19192,7 +20362,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19276,7 +20451,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19351,7 +20531,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19442,7 +20627,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19514,7 +20704,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19586,7 +20781,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19677,7 +20877,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19762,7 +20967,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19845,7 +21055,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19928,7 +21143,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20000,7 +21220,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20060,7 +21285,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20129,7 +21359,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20200,7 +21435,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20281,7 +21521,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20361,7 +21606,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -20439,7 +21689,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20528,7 +21783,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20603,7 +21863,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20687,7 +21952,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -20772,7 +22042,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20876,7 +22151,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20970,7 +22250,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -21065,7 +22350,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21127,7 +22417,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21201,7 +22496,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21273,7 +22573,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21342,7 +22647,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21414,7 +22724,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -21487,7 +22802,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21553,7 +22873,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21621,7 +22946,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21687,7 +23017,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21764,7 +23099,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21841,7 +23181,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21957,7 +23302,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22034,7 +23384,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22108,7 +23463,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22233,7 +23593,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22465,7 +23830,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22551,7 +23921,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22661,7 +24036,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22787,7 +24167,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22904,7 +24289,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22967,7 +24357,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23028,7 +24423,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23101,7 +24501,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23174,7 +24579,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23246,7 +24656,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23312,7 +24727,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23378,7 +24798,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23450,7 +24875,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23531,7 +24961,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23618,7 +25053,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23702,7 +25142,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23783,7 +25228,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23865,7 +25315,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23934,7 +25389,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24007,7 +25467,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24082,7 +25547,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24155,7 +25625,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24236,7 +25711,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24302,7 +25782,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24372,7 +25857,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24442,7 +25932,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24509,7 +26004,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24590,7 +26090,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24673,7 +26178,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24736,7 +26246,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24808,7 +26323,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24871,7 +26391,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24940,7 +26465,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25012,7 +26542,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25087,7 +26622,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25171,7 +26711,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25270,7 +26815,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25345,7 +26895,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25426,7 +26981,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25507,7 +27067,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25580,7 +27145,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25673,7 +27243,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25756,7 +27331,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25834,7 +27414,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25913,7 +27498,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25994,7 +27584,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26075,7 +27670,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26156,7 +27756,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26231,7 +27836,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26313,7 +27923,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26389,7 +28004,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -26480,7 +28100,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26537,7 +28162,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26606,7 +28236,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26660,7 +28295,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26717,7 +28357,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26788,7 +28433,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26857,7 +28507,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26941,7 +28596,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27013,7 +28673,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27099,7 +28764,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27164,7 +28834,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27244,7 +28919,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27319,7 +28999,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27385,7 +29070,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -27449,7 +29139,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27524,7 +29219,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27594,7 +29294,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27664,7 +29369,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27737,7 +29447,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27808,7 +29523,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27893,7 +29613,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27975,7 +29700,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28071,7 +29801,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28161,7 +29896,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -28246,7 +29986,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28314,7 +30059,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28395,7 +30145,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28500,7 +30255,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28581,7 +30341,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28644,7 +30409,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28724,7 +30494,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28799,7 +30574,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28871,7 +30651,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28943,7 +30728,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29015,7 +30805,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -29085,7 +30880,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29169,7 +30969,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29317,7 +31122,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29377,7 +31187,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29455,7 +31270,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29526,7 +31346,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29589,7 +31414,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29646,7 +31476,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29715,7 +31550,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29781,7 +31621,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29850,7 +31695,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29916,7 +31766,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -29983,7 +31838,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30064,7 +31924,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30139,7 +32004,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30219,7 +32089,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30294,7 +32169,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -30357,7 +32237,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30429,7 +32314,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30505,7 +32395,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30584,7 +32479,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30660,7 +32560,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30739,7 +32644,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -30816,7 +32726,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30907,7 +32822,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30995,7 +32915,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31089,7 +33014,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -31177,7 +33107,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -31249,7 +33184,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31324,7 +33264,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -31410,7 +33355,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -31453,7 +33403,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31521,7 +33476,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -31588,7 +33548,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31657,7 +33622,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { 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 5faf7a3ad3..7444c9470c 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 @@ -29866,7 +29866,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29903,7 +29909,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29941,7 +29953,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -29979,7 +29997,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30015,7 +30039,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30056,7 +30086,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30105,7 +30141,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30153,7 +30195,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30208,7 +30256,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30250,7 +30306,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30296,7 +30358,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30346,7 +30416,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30395,7 +30471,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30451,7 +30533,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30516,7 +30606,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30566,7 +30662,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30612,7 +30716,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30659,7 +30769,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30714,7 +30830,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30760,7 +30884,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30799,7 +30929,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30839,7 +30975,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30896,7 +31038,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30936,7 +31086,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30973,7 +31129,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31021,7 +31183,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31071,7 +31241,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31115,7 +31293,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31169,7 +31353,15 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31225,7 +31417,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31275,7 +31473,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31325,7 +31529,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31367,7 +31577,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31414,7 +31630,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31465,7 +31689,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31515,7 +31745,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31574,7 +31810,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31637,7 +31881,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31693,7 +31945,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31746,7 +32004,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31796,7 +32060,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31854,7 +32124,15 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31909,7 +32187,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31951,7 +32235,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31993,7 +32283,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32045,7 +32343,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32101,7 +32405,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32156,7 +32468,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32194,7 +32514,13 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32238,7 +32564,15 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32276,7 +32610,13 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32318,7 +32658,15 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32359,7 +32707,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32444,7 +32798,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32495,11 +32857,17 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI @@ -32564,7 +32932,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32602,7 +32976,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32655,7 +33035,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32693,7 +33081,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32738,7 +33132,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32793,7 +33195,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32838,7 +33246,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32896,7 +33310,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32944,7 +33366,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32996,7 +33424,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33053,7 +33489,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33102,7 +33544,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33161,7 +33609,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33263,7 +33719,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33320,7 +33782,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33368,7 +33836,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33424,7 +33898,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33476,7 +33958,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33524,7 +34012,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33584,7 +34078,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33642,7 +34144,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33695,7 +34203,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33742,7 +34256,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33788,7 +34308,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33846,7 +34372,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33899,7 +34433,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33955,7 +34495,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34013,7 +34561,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34068,7 +34622,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34130,7 +34690,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34186,7 +34754,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34241,7 +34815,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34288,7 +34868,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34348,7 +34934,15 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34408,7 +35002,15 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34457,7 +35059,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34513,7 +35121,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34560,7 +35174,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34616,7 +35236,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34665,7 +35291,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34724,7 +35356,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34772,7 +35410,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34833,7 +35477,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34896,7 +35548,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34953,7 +35613,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35015,7 +35683,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35081,7 +35757,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35142,7 +35824,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35200,7 +35888,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35269,7 +35963,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35321,7 +36023,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35371,7 +36079,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35429,7 +36143,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35493,11 +36215,17 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI @@ -35553,7 +36281,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35676,7 +36412,15 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35729,7 +36473,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35789,7 +36539,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35850,7 +36608,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35910,7 +36674,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35979,7 +36749,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36056,7 +36834,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36108,7 +36892,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36159,7 +36949,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36215,7 +37011,15 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36268,7 +37072,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36329,7 +37139,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36375,7 +37193,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36439,7 +37265,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36493,7 +37325,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36555,7 +37395,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36604,7 +37450,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36650,7 +37502,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36705,7 +37563,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36762,7 +37628,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36822,7 +37696,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36880,7 +37760,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36952,7 +37840,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37020,7 +37914,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37087,7 +37987,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37163,7 +38069,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37224,7 +38138,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37288,7 +38208,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37355,7 +38281,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37406,7 +38340,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37461,7 +38401,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37522,7 +38470,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37579,7 +38533,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37633,7 +38593,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37694,7 +38660,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37741,7 +38715,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37799,7 +38779,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37854,7 +38842,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37936,7 +38932,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37987,7 +38989,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38038,7 +39046,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38091,7 +39107,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38132,7 +39156,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38184,7 +39214,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38234,7 +39270,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38288,7 +39332,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38333,7 +39383,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38393,7 +39449,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38434,7 +39498,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38472,7 +39542,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38522,18 +39598,26 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - - label: Atlas CLI + - label: curl (Digest) lang: cURL - source: atlas api createCustomDatabaseRole --help + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ + -d '{ }' + - label: Atlas CLI + lang: cURL + source: atlas api createCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}: delete: description: Removes one custom role from the specified project. You can't remove a custom role that would leave one or more child roles with no parent roles or actions. You also can't remove a custom role that would leave one or more database users without roles. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -38570,7 +39654,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38613,7 +39703,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38669,7 +39765,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38718,7 +39822,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38766,7 +39876,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38810,7 +39928,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38854,7 +39978,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38910,7 +40040,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38958,7 +40096,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39018,7 +40162,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39078,7 +40228,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39148,7 +40304,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39216,7 +40380,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39255,7 +40425,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39396,7 +40572,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39464,7 +40648,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39527,7 +40717,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39603,7 +40799,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39652,7 +40856,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39717,7 +40927,15 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39801,7 +41019,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39880,7 +41104,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39919,7 +41149,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39979,7 +41215,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40025,7 +41269,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40075,7 +41325,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40137,7 +41395,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40189,7 +41453,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40282,7 +41552,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40338,7 +41614,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40376,7 +41658,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40444,7 +41732,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40511,7 +41805,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40577,7 +41877,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40620,7 +41926,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40678,7 +41990,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40735,7 +42053,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40804,7 +42128,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40873,7 +42205,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40920,7 +42260,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40968,7 +42314,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41014,7 +42368,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41062,7 +42424,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41110,7 +42478,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41166,7 +42540,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41207,7 +42589,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41251,7 +42639,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41327,7 +42721,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41404,7 +42804,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41491,7 +42897,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41550,7 +42964,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41593,7 +43015,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41634,7 +43062,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41686,7 +43122,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41739,7 +43183,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41774,7 +43224,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41809,7 +43265,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41852,7 +43314,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41889,7 +43359,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41926,7 +43404,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41964,7 +43450,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42000,7 +43492,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42036,7 +43534,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42115,7 +43621,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42166,7 +43678,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42217,7 +43735,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42266,7 +43792,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42312,7 +43844,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42369,7 +43907,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42410,7 +43956,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42455,7 +44007,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42503,7 +44063,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42549,7 +44115,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42605,7 +44177,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42656,7 +44236,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42713,7 +44299,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42760,7 +44352,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42809,7 +44409,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42868,7 +44476,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42925,7 +44539,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42981,7 +44601,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43035,7 +44661,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43086,7 +44720,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43142,7 +44782,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43199,7 +44845,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43268,7 +44920,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43333,7 +44993,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43397,7 +45063,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43443,7 +45115,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43483,7 +45163,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43527,7 +45213,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43576,7 +45270,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43633,7 +45333,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43689,7 +45397,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43742,7 +45456,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43802,7 +45522,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43844,7 +45572,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43892,7 +45626,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43937,7 +45679,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44000,7 +45748,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44049,7 +45805,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44097,7 +45859,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44136,7 +45904,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44180,7 +45954,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44259,7 +46039,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44298,7 +46084,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44345,7 +46137,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44395,11 +46193,17 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: Atlas CLI @@ -44471,7 +46275,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44518,7 +46328,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44567,7 +46383,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44659,7 +46481,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44862,7 +46690,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44926,7 +46760,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45007,7 +46847,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45095,7 +46941,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45135,7 +46987,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45174,7 +47032,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45221,7 +47085,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45270,7 +47142,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45320,7 +47200,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45366,7 +47254,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45405,7 +47299,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45451,7 +47351,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45503,7 +47411,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45560,7 +47474,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45618,7 +47540,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45668,7 +47596,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45724,7 +47658,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45769,7 +47709,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45818,7 +47764,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45869,7 +47823,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45917,7 +47877,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45970,7 +47936,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46012,7 +47986,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46057,7 +48037,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46104,7 +48092,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46147,7 +48141,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46199,7 +48199,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46255,7 +48263,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46297,7 +48313,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46343,7 +48365,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46383,7 +48413,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46427,7 +48463,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46475,7 +48519,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46524,7 +48574,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46578,7 +48634,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46647,7 +48711,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46693,7 +48763,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46745,7 +48821,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46799,7 +48883,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46847,7 +48937,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46907,7 +49003,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46962,7 +49066,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47014,7 +49126,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47065,7 +49183,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47117,7 +49241,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47171,7 +49303,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47222,7 +49362,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47267,7 +49413,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47320,7 +49472,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47373,7 +49533,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47433,7 +49599,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47471,7 +49645,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47518,7 +49698,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47558,7 +49746,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47594,7 +49788,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47639,7 +49839,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47686,7 +49894,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47737,7 +49951,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47784,7 +50004,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47840,7 +50066,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47884,7 +50118,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47935,7 +50177,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47984,7 +50232,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48033,7 +50287,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48083,7 +50345,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48124,7 +50392,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48172,7 +50446,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48216,7 +50498,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48261,7 +50549,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48311,7 +50607,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48358,7 +50660,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48414,7 +50722,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48467,7 +50783,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48527,7 +50849,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48589,7 +50919,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48646,7 +50982,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48690,7 +51032,15 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48746,7 +51096,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48817,7 +51173,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48873,7 +51235,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48913,7 +51281,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48969,7 +51343,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49017,7 +51397,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49063,7 +51449,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49111,7 +51505,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49159,7 +51561,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49206,7 +51614,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49261,7 +51675,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49363,7 +51785,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49416,7 +51844,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49470,7 +51904,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49508,7 +51948,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49548,7 +51994,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49585,7 +52037,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49629,7 +52087,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49671,7 +52137,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49715,7 +52187,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49759,7 +52239,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49802,7 +52288,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49854,7 +52346,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49902,7 +52402,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49953,7 +52459,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50003,7 +52517,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50043,7 +52563,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50089,7 +52615,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50137,7 +52671,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50188,7 +52728,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50242,7 +52790,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50293,7 +52847,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50353,7 +52913,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50411,7 +52979,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50473,7 +53047,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50534,7 +53116,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50583,7 +53171,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50626,7 +53220,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50676,7 +53276,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50732,7 +53338,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50764,7 +53378,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50813,7 +53433,15 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50861,7 +53489,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50905,7 +53539,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ 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 8a2484c434..5b29543f3b 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 @@ -250,7 +250,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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\"" }, { @@ -307,7 +312,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -370,7 +380,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -433,7 +448,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -487,7 +507,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -553,7 +578,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -626,7 +656,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -697,7 +732,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -779,7 +819,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -842,7 +887,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -914,7 +964,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -987,7 +1042,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1061,7 +1121,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1146,7 +1211,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1244,7 +1314,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1316,7 +1391,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1383,7 +1463,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1454,7 +1539,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1533,7 +1623,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1600,7 +1695,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1660,7 +1760,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1726,7 +1831,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1812,7 +1922,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1886,7 +2001,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1946,7 +2066,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -2004,7 +2129,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2079,7 +2209,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2155,7 +2290,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2225,7 +2365,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2313,7 +2458,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2388,7 +2538,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2464,7 +2619,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2541,7 +2701,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2607,7 +2772,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2676,7 +2846,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2746,7 +2921,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2817,7 +2997,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2899,7 +3084,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2984,7 +3174,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3066,7 +3261,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3148,7 +3348,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3220,7 +3425,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3304,7 +3514,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3385,7 +3600,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3455,7 +3675,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3521,7 +3746,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3597,7 +3827,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -3687,7 +3922,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3768,7 +4008,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3825,7 +4070,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3894,7 +4144,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3951,7 +4206,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4017,7 +4277,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4083,7 +4348,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4210,7 +4480,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4283,7 +4558,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4385,7 +4665,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4445,7 +4730,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4527,7 +4817,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4584,7 +4879,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4654,7 +4954,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4735,7 +5040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4804,7 +5114,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4892,7 +5207,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4967,7 +5287,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5052,7 +5377,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5137,7 +5467,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5217,7 +5552,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5297,7 +5637,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5380,7 +5725,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -5453,7 +5803,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5541,7 +5896,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5619,7 +5979,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5703,7 +6068,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5778,7 +6148,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5856,7 +6231,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5943,7 +6323,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6027,7 +6412,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6106,7 +6496,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6175,7 +6570,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6242,7 +6642,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6323,7 +6728,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6404,7 +6814,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6485,7 +6900,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6566,7 +6986,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6648,7 +7073,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6720,7 +7150,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6804,7 +7239,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6886,7 +7326,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6979,7 +7424,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7071,7 +7521,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7160,7 +7615,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7232,7 +7692,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7316,7 +7781,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7388,7 +7858,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7472,7 +7947,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7551,7 +8031,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7639,7 +8124,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7711,7 +8201,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7803,7 +8298,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7895,7 +8395,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7978,7 +8483,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8069,7 +8579,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8165,7 +8680,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8255,7 +8775,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -8340,7 +8865,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8442,7 +8972,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8516,7 +9051,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8589,7 +9129,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8675,7 +9220,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8767,7 +9317,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8856,7 +9411,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9031,7 +9591,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9113,7 +9678,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9204,7 +9774,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9313,7 +9888,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9401,7 +9981,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -9490,7 +10075,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9593,7 +10183,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9672,7 +10267,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9749,7 +10349,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9834,7 +10439,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9910,7 +10520,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9999,7 +10614,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10065,7 +10685,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10158,7 +10783,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10240,7 +10870,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10325,7 +10960,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10400,7 +11040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10470,7 +11115,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10554,7 +11204,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10638,7 +11293,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10727,7 +11387,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10815,7 +11480,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10922,7 +11592,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11025,7 +11700,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11126,7 +11806,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11241,7 +11926,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11329,7 +12019,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11425,7 +12120,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11525,7 +12225,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11595,7 +12300,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11674,7 +12384,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11767,7 +12482,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11852,7 +12572,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11932,7 +12657,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12023,7 +12753,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12092,7 +12827,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12181,7 +12921,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12323,7 +13068,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12412,7 +13162,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12493,7 +13248,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12610,7 +13370,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12670,7 +13435,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12754,7 +13524,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12832,7 +13607,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12898,7 +13678,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12977,7 +13762,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13045,7 +13835,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13136,7 +13931,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13196,7 +13996,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13274,7 +14079,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13346,7 +14156,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13413,7 +14228,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13500,7 +14320,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13573,7 +14398,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13648,7 +14478,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13714,7 +14549,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13781,7 +14621,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13868,7 +14713,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13940,7 +14790,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14018,7 +14873,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -14097,7 +14957,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14190,7 +15055,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14286,7 +15156,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14352,7 +15227,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14582,7 +15462,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14664,7 +15549,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -14741,7 +15631,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14838,7 +15733,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14916,7 +15816,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15008,7 +15913,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15131,7 +16041,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15251,7 +16166,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15308,7 +16228,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15383,7 +16308,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15452,7 +16382,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15530,7 +16465,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15622,7 +16562,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15701,7 +16646,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15834,7 +16784,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15915,7 +16870,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15975,7 +16935,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16081,7 +17046,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16190,7 +17160,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16291,7 +17266,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16363,7 +17343,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16448,7 +17433,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -16531,7 +17521,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16637,7 +17632,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16740,7 +17740,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16810,7 +17815,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16884,7 +17894,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16952,7 +17967,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17020,7 +18040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17092,7 +18117,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17175,7 +18205,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17236,7 +18271,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17305,7 +18345,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17392,7 +18437,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17480,7 +18530,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17579,7 +18634,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17657,7 +18717,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17735,7 +18800,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17811,7 +18881,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17877,7 +18952,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17943,7 +19023,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17997,7 +19082,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18052,7 +19142,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18118,7 +19213,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18172,7 +19272,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18226,7 +19331,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18283,7 +19393,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18340,7 +19455,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18397,7 +19517,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18515,7 +19640,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18598,7 +19728,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18677,7 +19812,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18749,7 +19889,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18819,7 +19964,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18906,7 +20056,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18966,7 +20121,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19035,7 +20195,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19104,7 +20269,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19174,7 +20344,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19258,7 +20433,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19333,7 +20513,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19424,7 +20609,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19496,7 +20686,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19568,7 +20763,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19659,7 +20859,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19744,7 +20949,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19827,7 +21037,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19910,7 +21125,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19982,7 +21202,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20042,7 +21267,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20111,7 +21341,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20182,7 +21417,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20263,7 +21503,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20343,7 +21588,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -20421,7 +21671,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20510,7 +21765,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20585,7 +21845,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20669,7 +21934,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -20754,7 +22024,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20858,7 +22133,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20952,7 +22232,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -21047,7 +22332,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21109,7 +22399,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21183,7 +22478,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21255,7 +22555,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21324,7 +22629,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21396,7 +22706,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -21469,7 +22784,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21535,7 +22855,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21603,7 +22928,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21669,7 +22999,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21746,7 +23081,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21823,7 +23163,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21939,7 +23284,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22016,7 +23366,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22090,7 +23445,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22215,7 +23575,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22447,7 +23812,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22533,7 +23903,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22643,7 +24018,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22769,7 +24149,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22886,7 +24271,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22949,7 +24339,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23010,7 +24405,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23083,7 +24483,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23156,7 +24561,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23228,7 +24638,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23294,7 +24709,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23360,7 +24780,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23432,7 +24857,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23513,7 +24943,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23600,7 +25035,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23684,7 +25124,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23765,7 +25210,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23847,7 +25297,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23916,7 +25371,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23989,7 +25449,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24064,7 +25529,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24137,7 +25607,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24218,7 +25693,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24284,7 +25764,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24354,7 +25839,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24424,7 +25914,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24491,7 +25986,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24572,7 +26072,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24655,7 +26160,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24718,7 +26228,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24790,7 +26305,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24853,7 +26373,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24922,7 +26447,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24994,7 +26524,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25069,7 +26604,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25153,7 +26693,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25252,7 +26797,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25327,7 +26877,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25408,7 +26963,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25489,7 +27049,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25562,7 +27127,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25655,7 +27225,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25738,7 +27313,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25816,7 +27396,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25895,7 +27480,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25976,7 +27566,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26057,7 +27652,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26138,7 +27738,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26213,7 +27818,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26295,7 +27905,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26371,7 +27986,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -26462,7 +28082,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26519,7 +28144,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26588,7 +28218,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26642,7 +28277,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26699,7 +28339,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26770,7 +28415,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26839,7 +28489,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26923,7 +28578,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26995,7 +28655,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27081,7 +28746,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27146,7 +28816,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27226,7 +28901,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27301,7 +28981,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27367,7 +29052,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -27431,7 +29121,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27506,7 +29201,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27576,7 +29276,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27646,7 +29351,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27719,7 +29429,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27790,7 +29505,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27875,7 +29595,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27957,7 +29682,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28053,7 +29783,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28143,7 +29878,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -28228,7 +29968,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28296,7 +30041,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28377,7 +30127,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28482,7 +30237,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28563,7 +30323,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28626,7 +30391,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28706,7 +30476,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28781,7 +30556,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28853,7 +30633,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28925,7 +30710,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28997,7 +30787,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -29067,7 +30862,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29151,7 +30951,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29299,7 +31104,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29359,7 +31169,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29437,7 +31252,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29508,7 +31328,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29571,7 +31396,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29628,7 +31458,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29697,7 +31532,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29763,7 +31603,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29832,7 +31677,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29898,7 +31748,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -29965,7 +31820,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30046,7 +31906,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30121,7 +31986,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30201,7 +32071,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30276,7 +32151,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -30339,7 +32219,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30411,7 +32296,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30487,7 +32377,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30566,7 +32461,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30642,7 +32542,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30721,7 +32626,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -30798,7 +32708,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30889,7 +32804,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30977,7 +32897,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31071,7 +32996,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -31159,7 +33089,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -31231,7 +33166,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31306,7 +33246,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -31392,7 +33337,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -31435,7 +33385,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31503,7 +33458,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -31570,7 +33530,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31639,7 +33604,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { 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 2f66568bbd..d0971c65f1 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 @@ -30144,7 +30144,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30181,7 +30187,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30219,7 +30231,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30257,7 +30275,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30293,7 +30317,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30334,7 +30364,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30383,7 +30419,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30431,7 +30473,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30486,7 +30534,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30528,7 +30584,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30574,7 +30636,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30624,7 +30694,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30673,7 +30749,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30729,7 +30811,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30794,7 +30884,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30844,7 +30940,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30890,7 +30994,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30937,7 +31047,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30992,7 +31108,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31038,7 +31162,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31077,7 +31207,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31117,7 +31253,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31174,7 +31316,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31214,7 +31364,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31251,7 +31407,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31299,7 +31461,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31349,7 +31519,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31393,7 +31571,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31447,7 +31631,15 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31503,7 +31695,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31553,7 +31751,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31603,7 +31807,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31645,7 +31855,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31692,7 +31908,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31743,7 +31967,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31793,7 +32023,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31852,7 +32088,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31915,7 +32159,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31971,7 +32223,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32024,7 +32282,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32074,7 +32338,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32132,7 +32402,15 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32187,7 +32465,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32229,7 +32513,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32271,7 +32561,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32323,7 +32621,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32379,7 +32683,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32434,7 +32746,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32472,7 +32792,13 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32516,7 +32842,15 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32554,7 +32888,13 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32596,7 +32936,15 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32637,7 +32985,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32722,7 +33076,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32773,11 +33135,17 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI @@ -32842,7 +33210,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32880,7 +33254,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32933,7 +33313,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32971,7 +33359,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33016,7 +33410,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33071,7 +33473,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33116,7 +33524,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33174,7 +33588,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33221,7 +33643,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33399,7 +33827,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33455,7 +33891,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33503,7 +33945,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33561,7 +34009,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33662,7 +34118,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33719,7 +34181,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33767,7 +34235,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33823,7 +34297,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33875,7 +34357,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33923,7 +34411,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33983,7 +34477,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34041,7 +34543,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34094,7 +34602,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34140,7 +34654,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34184,7 +34704,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34240,7 +34766,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34292,7 +34826,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34348,7 +34888,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34406,7 +34954,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34461,7 +35015,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34523,7 +35083,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34579,7 +35147,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34634,7 +35208,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34681,7 +35261,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34741,7 +35327,15 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34801,7 +35395,15 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34850,7 +35452,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34906,7 +35514,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34953,7 +35567,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35009,7 +35629,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35058,7 +35684,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35117,7 +35749,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35165,7 +35803,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35226,7 +35870,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35289,7 +35941,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35346,7 +36006,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35408,7 +36076,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35474,7 +36150,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35535,7 +36217,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35593,7 +36281,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35662,7 +36356,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35713,7 +36415,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35761,7 +36469,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35818,7 +36532,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35880,11 +36602,17 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI @@ -35939,7 +36667,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36061,7 +36797,15 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36114,7 +36858,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36174,7 +36924,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36235,7 +36993,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36295,7 +37059,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36364,7 +37134,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36441,7 +37219,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36493,7 +37277,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36544,7 +37334,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36600,7 +37396,15 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36652,7 +37456,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36711,7 +37521,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36756,7 +37574,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36820,7 +37646,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36874,7 +37706,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36936,7 +37776,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36985,7 +37831,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37031,7 +37883,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37086,7 +37944,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37143,7 +38009,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37203,7 +38077,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37261,7 +38141,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37333,7 +38221,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37401,7 +38295,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37468,7 +38368,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37544,7 +38450,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37605,7 +38519,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37669,7 +38589,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37736,7 +38662,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37787,7 +38721,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37842,7 +38782,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37903,7 +38851,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37960,7 +38914,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38014,7 +38974,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38075,7 +39041,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38122,7 +39096,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38180,7 +39160,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38235,7 +39223,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38317,7 +39313,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38368,7 +39370,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38419,7 +39427,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38472,7 +39488,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38513,7 +39537,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38565,7 +39595,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38615,7 +39651,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38669,7 +39713,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38714,7 +39764,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38774,7 +39830,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38815,7 +39879,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38853,7 +39923,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38903,18 +39979,26 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - - label: Atlas CLI + - label: curl (Digest) lang: cURL - source: atlas api createCustomDatabaseRole --help + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ + -d '{ }' + - label: Atlas CLI + lang: cURL + source: atlas api createCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}: delete: description: Removes one custom role from the specified project. You can't remove a custom role that would leave one or more child roles with no parent roles or actions. You also can't remove a custom role that would leave one or more database users without roles. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -38951,7 +40035,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38994,7 +40084,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39050,7 +40146,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39099,7 +40203,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39147,7 +40257,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39191,7 +40309,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39235,7 +40359,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39291,7 +40421,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39339,7 +40477,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39399,7 +40543,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39459,7 +40609,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39529,7 +40685,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39597,7 +40761,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39636,7 +40806,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39777,7 +40953,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39845,7 +41029,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39908,7 +41098,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39984,7 +41180,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40033,7 +41237,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40098,7 +41308,15 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40182,7 +41400,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40261,7 +41485,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40300,7 +41530,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40360,7 +41596,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40406,7 +41650,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40456,7 +41706,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40518,7 +41776,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40570,7 +41834,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40663,7 +41933,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40719,7 +41995,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40757,7 +42039,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40825,7 +42113,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40892,7 +42186,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40958,7 +42258,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41001,7 +42307,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41059,7 +42371,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41116,7 +42434,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41185,7 +42509,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41254,7 +42586,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41301,7 +42641,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41349,7 +42695,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41395,7 +42749,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41443,7 +42805,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41491,7 +42859,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41547,7 +42921,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41588,7 +42970,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41632,7 +43020,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41708,7 +43102,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41785,7 +43185,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41872,7 +43278,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41931,7 +43345,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41974,7 +43396,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42015,7 +43443,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42067,7 +43503,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42120,7 +43564,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42155,7 +43605,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42190,7 +43646,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42233,7 +43695,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42270,7 +43740,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42307,7 +43785,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42345,7 +43831,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42381,7 +43873,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42417,7 +43915,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42496,7 +44002,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42547,7 +44059,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42598,7 +44116,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42647,7 +44173,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42693,7 +44225,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42750,7 +44288,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42791,7 +44337,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42836,7 +44388,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42884,7 +44444,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42930,7 +44496,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42986,7 +44558,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43037,7 +44617,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43094,7 +44680,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43141,7 +44733,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43190,7 +44790,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43249,7 +44857,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43306,7 +44920,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43362,7 +44982,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43416,7 +45042,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43467,7 +45101,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43523,7 +45163,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43580,7 +45226,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43649,7 +45301,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43714,7 +45374,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43778,7 +45444,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43824,7 +45496,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43864,7 +45544,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43908,7 +45594,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43957,7 +45651,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44014,7 +45714,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44070,7 +45778,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44123,7 +45837,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44183,7 +45903,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44225,7 +45953,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44273,7 +46007,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44318,7 +46060,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44381,7 +46129,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44430,7 +46186,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44478,7 +46240,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44517,7 +46285,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44561,7 +46335,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44640,7 +46420,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44679,7 +46465,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44726,7 +46518,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44776,11 +46574,17 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: Atlas CLI @@ -44852,7 +46656,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44899,7 +46709,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44948,7 +46764,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45040,7 +46862,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45243,7 +47071,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45307,7 +47141,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45388,7 +47228,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45476,7 +47322,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45516,7 +47368,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45555,7 +47413,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45602,7 +47466,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45651,7 +47523,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45701,7 +47581,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45747,7 +47635,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45786,7 +47680,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45832,7 +47732,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45884,7 +47792,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45941,7 +47855,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45999,7 +47921,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46049,7 +47977,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46105,7 +48039,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46150,7 +48090,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46199,7 +48145,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46250,7 +48204,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46298,7 +48258,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46351,7 +48317,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46393,7 +48367,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46438,7 +48418,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46485,7 +48473,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46528,7 +48522,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46580,7 +48580,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46636,7 +48644,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46678,7 +48694,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46724,7 +48746,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46764,7 +48794,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46808,7 +48844,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46856,7 +48900,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46905,7 +48955,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46959,7 +49015,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47028,7 +49092,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47074,7 +49144,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47126,7 +49202,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47180,7 +49264,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47228,7 +49318,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47288,7 +49384,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47343,7 +49447,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47395,7 +49507,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47446,7 +49564,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47498,7 +49622,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47552,7 +49684,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47603,7 +49743,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47648,7 +49794,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47701,7 +49853,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47754,7 +49914,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47814,7 +49980,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47852,7 +50026,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47899,7 +50079,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47939,7 +50127,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47975,7 +50169,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48020,7 +50220,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48067,7 +50275,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48118,7 +50332,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48165,7 +50385,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48221,7 +50447,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48265,7 +50499,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48316,7 +50558,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48365,7 +50613,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48414,7 +50668,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48464,7 +50726,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48505,7 +50773,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48553,7 +50827,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48597,7 +50879,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48642,7 +50930,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48692,7 +50988,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48739,7 +51041,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48795,7 +51103,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48848,7 +51164,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48908,7 +51230,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48970,7 +51300,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49027,7 +51363,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49071,7 +51413,15 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49127,7 +51477,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49198,7 +51554,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49254,7 +51616,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49294,7 +51662,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49350,7 +51724,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49398,7 +51778,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49444,7 +51830,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49492,7 +51886,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49540,7 +51942,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49587,7 +51995,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49642,7 +52056,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49744,7 +52166,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49797,7 +52225,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49851,7 +52285,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49889,7 +52329,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49929,7 +52375,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49966,7 +52418,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50010,7 +52468,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50052,7 +52518,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50096,7 +52568,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50140,7 +52620,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50183,7 +52669,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50235,7 +52727,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50283,7 +52783,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50334,7 +52840,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50384,7 +52898,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50424,7 +52944,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50470,7 +52996,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50518,7 +53052,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50569,7 +53109,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50623,7 +53171,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50674,7 +53228,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50734,7 +53294,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50792,7 +53360,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50854,7 +53428,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50915,7 +53497,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50964,7 +53552,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51007,7 +53601,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51057,7 +53657,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51113,7 +53719,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51145,7 +53759,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51194,7 +53814,15 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51242,7 +53870,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51286,7 +53920,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ 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 20b288a2e5..0b99208520 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 @@ -250,7 +250,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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\"" }, { @@ -307,7 +312,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -370,7 +380,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -433,7 +448,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -487,7 +507,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -553,7 +578,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -626,7 +656,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -697,7 +732,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -779,7 +819,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -842,7 +887,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -914,7 +964,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -987,7 +1042,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1061,7 +1121,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1146,7 +1211,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1244,7 +1314,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1316,7 +1391,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1383,7 +1463,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -1454,7 +1539,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1533,7 +1623,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1600,7 +1695,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1660,7 +1760,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1726,7 +1831,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1812,7 +1922,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -1886,7 +2001,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -1946,7 +2066,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -2004,7 +2129,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2079,7 +2209,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2155,7 +2290,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2225,7 +2365,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2313,7 +2458,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2388,7 +2538,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2464,7 +2619,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2541,7 +2701,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2607,7 +2772,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2676,7 +2846,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2746,7 +2921,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -2817,7 +2997,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -2899,7 +3084,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -2984,7 +3174,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3066,7 +3261,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3148,7 +3348,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3220,7 +3425,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3304,7 +3514,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3385,7 +3600,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3455,7 +3675,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3521,7 +3746,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3597,7 +3827,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -3687,7 +3922,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3768,7 +4008,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3825,7 +4070,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -3894,7 +4144,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -3951,7 +4206,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4017,7 +4277,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4083,7 +4348,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4210,7 +4480,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4283,7 +4558,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4385,7 +4665,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4445,7 +4730,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4527,7 +4817,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4584,7 +4879,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4654,7 +4954,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4735,7 +5040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -4804,7 +5114,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -4892,7 +5207,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -4967,7 +5287,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5052,7 +5377,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5137,7 +5467,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5217,7 +5552,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5297,7 +5637,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5380,7 +5725,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -5453,7 +5803,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5541,7 +5896,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5619,7 +5979,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5703,7 +6068,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -5778,7 +6148,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5856,7 +6231,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -5943,7 +6323,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6027,7 +6412,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6106,7 +6496,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6175,7 +6570,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6242,7 +6642,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6323,7 +6728,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6404,7 +6814,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6485,7 +6900,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -6566,7 +6986,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6648,7 +7073,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6720,7 +7150,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6804,7 +7239,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -6886,7 +7326,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -6979,7 +7424,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7071,7 +7521,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7160,7 +7615,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7232,7 +7692,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7316,7 +7781,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7388,7 +7858,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7472,7 +7947,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7551,7 +8031,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7639,7 +8124,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7711,7 +8201,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -7803,7 +8298,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7895,7 +8395,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -7978,7 +8483,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8069,7 +8579,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8165,7 +8680,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8255,7 +8775,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -8340,7 +8865,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8442,7 +8972,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8516,7 +9051,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8589,7 +9129,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8675,7 +9220,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -8767,7 +9317,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -8856,7 +9411,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9031,7 +9591,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9113,7 +9678,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9204,7 +9774,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9313,7 +9888,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9401,7 +9981,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -9490,7 +10075,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9593,7 +10183,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9672,7 +10267,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9749,7 +10349,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9834,7 +10439,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -9910,7 +10520,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -9999,7 +10614,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10065,7 +10685,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10158,7 +10783,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10240,7 +10870,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10325,7 +10960,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10400,7 +11040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10470,7 +11115,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10554,7 +11204,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10638,7 +11293,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10727,7 +11387,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -10815,7 +11480,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -10922,7 +11592,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11025,7 +11700,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11126,7 +11806,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11241,7 +11926,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11329,7 +12019,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11425,7 +12120,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11525,7 +12225,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11595,7 +12300,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11674,7 +12384,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -11767,7 +12482,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -11852,7 +12572,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -11932,7 +12657,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12023,7 +12753,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12092,7 +12827,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12181,7 +12921,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12323,7 +13068,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12412,7 +13162,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12493,7 +13248,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12610,7 +13370,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12670,7 +13435,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12754,7 +13524,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12832,7 +13607,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -12898,7 +13678,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -12977,7 +13762,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13045,7 +13835,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13136,7 +13931,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13196,7 +13996,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13274,7 +14079,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13346,7 +14156,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13413,7 +14228,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13500,7 +14320,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13573,7 +14398,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13648,7 +14478,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13714,7 +14549,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -13781,7 +14621,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -13868,7 +14713,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -13940,7 +14790,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14018,7 +14873,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -14097,7 +14957,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14190,7 +15055,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14286,7 +15156,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14352,7 +15227,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14582,7 +15462,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14664,7 +15549,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -14741,7 +15631,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -14838,7 +15733,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -14916,7 +15816,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15008,7 +15913,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15131,7 +16041,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15251,7 +16166,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15308,7 +16228,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15383,7 +16308,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15452,7 +16382,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15530,7 +16465,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -15622,7 +16562,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -15701,7 +16646,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15834,7 +16784,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15915,7 +16870,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -15975,7 +16935,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16081,7 +17046,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16190,7 +17160,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16291,7 +17266,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16363,7 +17343,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16448,7 +17433,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -16531,7 +17521,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16637,7 +17632,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16740,7 +17740,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16810,7 +17815,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -16884,7 +17894,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -16952,7 +17967,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17020,7 +18040,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17092,7 +18117,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17175,7 +18205,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17236,7 +18271,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17305,7 +18345,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17392,7 +18437,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -17480,7 +18530,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17579,7 +18634,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17657,7 +18717,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17735,7 +18800,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17811,7 +18881,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17877,7 +18952,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -17943,7 +19023,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -17997,7 +19082,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18052,7 +19142,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18118,7 +19213,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18172,7 +19272,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18226,7 +19331,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18283,7 +19393,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18340,7 +19455,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18397,7 +19517,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18515,7 +19640,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18598,7 +19728,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18677,7 +19812,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18749,7 +19889,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -18819,7 +19964,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -18906,7 +20056,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -18966,7 +20121,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19035,7 +20195,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19104,7 +20269,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19174,7 +20344,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19258,7 +20433,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19333,7 +20513,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19424,7 +20609,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19496,7 +20686,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19568,7 +20763,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19659,7 +20859,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19744,7 +20949,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -19827,7 +21037,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -19910,7 +21125,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -19982,7 +21202,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20042,7 +21267,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20111,7 +21341,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20182,7 +21417,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20263,7 +21503,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20343,7 +21588,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -20421,7 +21671,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20510,7 +21765,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20585,7 +21845,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20669,7 +21934,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -20754,7 +22024,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -20858,7 +22133,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -20952,7 +22232,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -21047,7 +22332,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21109,7 +22399,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21183,7 +22478,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21255,7 +22555,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21324,7 +22629,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -21396,7 +22706,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -21469,7 +22784,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21535,7 +22855,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21603,7 +22928,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21669,7 +22999,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21746,7 +23081,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21823,7 +23163,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -21939,7 +23284,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22016,7 +23366,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22090,7 +23445,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22215,7 +23575,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22447,7 +23812,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22533,7 +23903,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22643,7 +24018,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22769,7 +24149,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22886,7 +24271,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -22949,7 +24339,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23010,7 +24405,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23083,7 +24483,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23156,7 +24561,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23228,7 +24638,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23294,7 +24709,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23360,7 +24780,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23432,7 +24857,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23513,7 +24943,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23600,7 +25035,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -23684,7 +25124,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23765,7 +25210,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23847,7 +25297,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23916,7 +25371,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -23989,7 +25449,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24064,7 +25529,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24137,7 +25607,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24218,7 +25693,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24284,7 +25764,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24354,7 +25839,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24424,7 +25914,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -24491,7 +25986,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24572,7 +26072,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24655,7 +26160,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24718,7 +26228,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24790,7 +26305,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24853,7 +26373,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -24922,7 +26447,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -24994,7 +26524,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25069,7 +26604,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25153,7 +26693,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25252,7 +26797,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25327,7 +26877,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25408,7 +26963,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25489,7 +27049,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25562,7 +27127,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25655,7 +27225,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25738,7 +27313,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -25816,7 +27396,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -25895,7 +27480,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -25976,7 +27566,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26057,7 +27652,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26138,7 +27738,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26213,7 +27818,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26295,7 +27905,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26371,7 +27986,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -26462,7 +28082,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26519,7 +28144,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26588,7 +28218,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26642,7 +28277,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26699,7 +28339,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26770,7 +28415,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -26839,7 +28489,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26923,7 +28578,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -26995,7 +28655,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27081,7 +28746,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27147,7 +28817,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27219,7 +28894,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27294,7 +28974,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -27370,7 +29055,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27451,7 +29141,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27516,7 +29211,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27596,7 +29296,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27671,7 +29376,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27737,7 +29447,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + }, + { + "lang": "cURL", + "label": "curl (Digest)", "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}\"" }, { @@ -27801,7 +29516,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -27876,7 +29596,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -27946,7 +29671,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28016,7 +29746,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28089,7 +29824,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -28160,7 +29900,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28245,7 +29990,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28327,7 +30077,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28423,7 +30178,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28513,7 +30273,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -28598,7 +30363,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28666,7 +30436,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -28747,7 +30522,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28852,7 +30632,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28933,7 +30718,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -28996,7 +30786,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29076,7 +30871,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29151,7 +30951,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29223,7 +31028,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29295,7 +31105,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29367,7 +31182,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -29437,7 +31257,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29521,7 +31346,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -29669,7 +31499,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29729,7 +31564,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29807,7 +31647,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29878,7 +31723,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -29964,7 +31814,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30027,7 +31882,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30084,7 +31944,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30153,7 +32018,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30219,7 +32089,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30288,7 +32163,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30354,7 +32234,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -30421,7 +32306,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30502,7 +32392,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30577,7 +32472,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30657,7 +32557,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30732,7 +32637,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -30795,7 +32705,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -30867,7 +32782,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -30943,7 +32863,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31022,7 +32947,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -31098,7 +33028,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31177,7 +33112,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -31254,7 +33194,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31345,7 +33290,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -31433,7 +33383,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31527,7 +33482,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -31615,7 +33575,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -31687,7 +33652,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31762,7 +33732,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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}\"" }, { @@ -31848,7 +33823,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -31891,7 +33871,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -31959,7 +33944,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" }, { @@ -32026,7 +34016,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { @@ -32095,7 +34090,12 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl", + "label": "curl (Service Account)", + "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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", + "label": "curl (Digest)", "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\"" }, { 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 d75a111268..00451501b9 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 @@ -30556,7 +30556,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30593,7 +30599,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30631,7 +30643,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30669,7 +30687,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30705,7 +30729,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30746,7 +30776,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30795,7 +30831,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30843,7 +30885,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30898,7 +30946,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30940,7 +30996,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -30986,7 +31048,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31036,7 +31106,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31085,7 +31161,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31141,7 +31223,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31206,7 +31296,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31256,7 +31352,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31302,7 +31406,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31349,7 +31459,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31404,7 +31520,15 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31450,7 +31574,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31489,7 +31619,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31529,7 +31665,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31586,7 +31728,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31626,7 +31776,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31663,7 +31819,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31711,7 +31873,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31761,7 +31931,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31805,7 +31983,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31859,7 +32043,15 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31915,7 +32107,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -31965,7 +32163,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32015,7 +32219,13 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32057,7 +32267,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32104,7 +32320,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32155,7 +32379,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32205,7 +32435,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32264,7 +32500,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32327,7 +32571,15 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32383,7 +32635,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32436,7 +32694,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32486,7 +32750,13 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32544,7 +32814,15 @@ paths: tags: - Alerts x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32599,7 +32877,13 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32641,7 +32925,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32683,7 +32973,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32735,7 +33033,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32791,7 +33095,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32846,7 +33158,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32884,7 +33204,13 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32928,7 +33254,15 @@ paths: tags: - Auditing x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -32966,7 +33300,13 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33008,7 +33348,15 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33049,7 +33397,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33134,7 +33488,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33185,11 +33547,17 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI @@ -33254,7 +33622,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33292,7 +33666,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33345,7 +33725,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33383,7 +33771,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33428,7 +33822,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33483,7 +33885,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33528,7 +33936,13 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33586,7 +34000,15 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33633,7 +34055,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33811,7 +34239,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33867,7 +34303,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33915,7 +34357,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -33973,7 +34421,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34074,7 +34530,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34131,7 +34593,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34179,7 +34647,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34235,7 +34709,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34287,7 +34769,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34335,7 +34823,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34395,7 +34889,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34453,7 +34955,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34506,7 +35014,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34552,7 +35066,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34596,7 +35116,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34652,7 +35178,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34704,7 +35238,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34760,7 +35300,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34818,7 +35366,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34873,7 +35427,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34935,7 +35495,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -34991,7 +35559,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35046,7 +35620,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35093,7 +35673,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35153,7 +35739,15 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35213,7 +35807,15 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35262,7 +35864,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35318,7 +35926,13 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35365,7 +35979,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35421,7 +36041,13 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35470,7 +36096,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35529,7 +36161,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35577,7 +36215,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35638,7 +36282,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35701,7 +36353,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35758,7 +36418,15 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35820,7 +36488,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35886,7 +36562,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -35947,7 +36629,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36005,7 +36693,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36074,7 +36768,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36125,7 +36827,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36173,7 +36881,13 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36230,7 +36944,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36292,11 +37014,17 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI @@ -36351,7 +37079,15 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36473,7 +37209,15 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36526,7 +37270,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36586,7 +37336,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36647,7 +37405,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36707,7 +37471,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36776,7 +37546,15 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36853,7 +37631,13 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36905,7 +37689,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -36956,7 +37746,13 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37012,7 +37808,15 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37064,7 +37868,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37123,7 +37933,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37168,7 +37986,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37232,7 +38058,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37286,7 +38118,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37348,7 +38188,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37397,7 +38243,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37443,7 +38295,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37498,7 +38356,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37555,7 +38421,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37615,7 +38489,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37673,7 +38553,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37745,7 +38633,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37813,7 +38707,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37880,7 +38780,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -37956,7 +38862,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38017,7 +38931,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38081,7 +39001,13 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38148,7 +39074,15 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38199,7 +39133,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38254,7 +39194,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38315,7 +39263,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38372,7 +39326,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38426,7 +39386,13 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38487,7 +39453,15 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38534,7 +39508,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38592,7 +39572,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38647,7 +39635,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38729,7 +39725,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38780,7 +39782,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38831,7 +39839,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38884,7 +39900,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38925,7 +39949,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -38977,7 +40007,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39027,7 +40063,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39081,7 +40125,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39126,7 +40176,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39186,7 +40242,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39227,7 +40291,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39265,7 +40335,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39315,18 +40391,26 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - - label: Atlas CLI + - label: curl (Digest) lang: cURL - source: atlas api createCustomDatabaseRole --help + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ + -d '{ }' + - label: Atlas CLI + lang: cURL + source: atlas api createCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}: delete: description: Removes one custom role from the specified project. You can't remove a custom role that would leave one or more child roles with no parent roles or actions. You also can't remove a custom role that would leave one or more database users without roles. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -39363,7 +40447,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39406,7 +40496,13 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39462,7 +40558,15 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39511,7 +40615,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39559,7 +40669,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39603,7 +40721,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39647,7 +40771,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39703,7 +40833,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39751,7 +40889,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39811,7 +40955,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39871,7 +41021,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -39941,7 +41097,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40009,7 +41173,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40048,7 +41218,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40189,7 +41365,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40257,7 +41441,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40320,7 +41510,13 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40396,7 +41592,15 @@ paths: tags: - Database Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40445,7 +41649,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40510,7 +41720,15 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40594,7 +41812,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40673,7 +41897,13 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40712,7 +41942,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40772,7 +42008,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40818,7 +42062,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40868,7 +42118,15 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40930,7 +42188,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -40982,7 +42246,13 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41075,7 +42345,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41131,7 +42407,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41169,7 +42451,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41237,7 +42525,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41304,7 +42598,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41370,7 +42670,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41413,7 +42719,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41471,7 +42783,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41528,7 +42846,13 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41597,7 +42921,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41666,7 +42998,15 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41713,7 +43053,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41761,7 +43107,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41807,7 +43161,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41855,7 +43217,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41903,7 +43271,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -41959,7 +43333,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42000,7 +43382,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42044,7 +43432,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42120,7 +43514,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42197,7 +43597,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42284,7 +43690,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42343,7 +43757,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42386,7 +43808,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42427,7 +43855,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42479,7 +43915,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42532,7 +43976,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42567,7 +44017,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42602,7 +44058,13 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42645,7 +44107,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42682,7 +44152,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42719,7 +44197,15 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42757,7 +44243,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42793,7 +44285,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42829,7 +44327,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42908,7 +44414,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -42959,7 +44471,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43010,7 +44528,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43059,7 +44585,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43105,7 +44637,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43162,7 +44700,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43203,7 +44749,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43248,7 +44800,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43296,7 +44856,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43342,7 +44908,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43398,7 +44970,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43449,7 +45029,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43506,7 +45092,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43553,7 +45145,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43602,7 +45202,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43661,7 +45269,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43718,7 +45332,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43774,7 +45394,13 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43828,7 +45454,15 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43879,7 +45513,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43935,7 +45575,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -43992,7 +45638,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44061,7 +45713,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44126,7 +45786,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44190,7 +45856,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44236,7 +45908,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44276,7 +45956,13 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44320,7 +46006,15 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44369,7 +46063,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44426,7 +46126,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44482,7 +46190,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44535,7 +46249,13 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44595,7 +46315,15 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44637,7 +46365,13 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44685,7 +46419,15 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44730,7 +46472,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44793,7 +46541,15 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44842,7 +46598,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44890,7 +46652,13 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44929,7 +46697,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -44973,7 +46747,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45052,7 +46832,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45091,7 +46877,13 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45138,7 +46930,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45188,11 +46986,17 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ - --digest \ + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + - label: curl (Digest) + lang: cURL + source: |- + curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: Atlas CLI @@ -45264,7 +47068,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45311,7 +47121,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45360,7 +47176,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45452,7 +47274,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45655,7 +47483,13 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45719,7 +47553,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45800,7 +47640,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45888,7 +47734,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45928,7 +47780,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -45967,7 +47825,13 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46014,7 +47878,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46063,7 +47935,15 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46113,7 +47993,15 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46159,7 +48047,13 @@ paths: tags: - Clusters x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46198,7 +48092,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46244,7 +48144,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46296,7 +48204,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46353,7 +48267,15 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46411,7 +48333,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46461,7 +48389,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46517,7 +48451,13 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46562,7 +48502,13 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46611,7 +48557,15 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46662,7 +48616,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46710,7 +48670,13 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46763,7 +48729,15 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46805,7 +48779,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46850,7 +48830,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46897,7 +48885,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46940,7 +48934,13 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -46992,7 +48992,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47048,7 +49056,15 @@ paths: tags: - Groups x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47090,7 +49106,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47136,7 +49158,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47176,7 +49206,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47220,7 +49256,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47268,7 +49312,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47317,7 +49367,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47371,7 +49427,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47440,7 +49504,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47486,7 +49556,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47538,7 +49614,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47592,7 +49676,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47640,7 +49730,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47700,7 +49796,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47755,7 +49859,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47807,7 +49919,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47858,7 +49976,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47910,7 +50034,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -47964,7 +50096,15 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48015,7 +50155,13 @@ paths: tags: - Streams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48060,7 +50206,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48113,7 +50265,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48166,7 +50326,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48226,7 +50392,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48264,7 +50438,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48311,7 +50491,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48351,7 +50539,13 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48387,7 +50581,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48432,7 +50632,15 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48479,7 +50687,13 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48530,7 +50744,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48577,7 +50797,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48633,7 +50859,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48674,7 +50908,13 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48720,7 +50960,15 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48771,7 +51019,13 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48821,7 +51075,13 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48874,7 +51134,15 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48918,7 +51186,15 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -48969,7 +51245,13 @@ paths: tags: - Projects x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49018,7 +51300,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49067,7 +51355,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49117,7 +51413,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49158,7 +51460,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49206,7 +51514,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49250,7 +51566,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49295,7 +51617,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49345,7 +51675,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49392,7 +51728,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49448,7 +51790,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49501,7 +51851,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49561,7 +51917,15 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49623,7 +51987,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49680,7 +52050,13 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49724,7 +52100,15 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49780,7 +52164,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49851,7 +52241,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49907,7 +52303,13 @@ paths: tags: - Events x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -49947,7 +52349,13 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50003,7 +52411,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50051,7 +52465,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50097,7 +52517,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50145,7 +52573,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50193,7 +52629,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50240,7 +52682,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50295,7 +52743,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50397,7 +52853,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50450,7 +52912,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50504,7 +52972,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50559,7 +53033,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50597,7 +53077,13 @@ paths: tags: - Invoices x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50637,7 +53123,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50674,7 +53166,13 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50718,7 +53216,15 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50760,7 +53266,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50804,7 +53316,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50848,7 +53368,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50891,7 +53417,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50943,7 +53475,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -50991,7 +53531,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51042,7 +53588,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51092,7 +53646,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51132,7 +53692,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51178,7 +53744,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51226,7 +53800,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51277,7 +53857,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51331,7 +53919,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51382,7 +53976,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51442,7 +54042,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51500,7 +54108,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51562,7 +54176,15 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51623,7 +54245,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51672,7 +54300,13 @@ paths: tags: - Teams x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51715,7 +54349,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51765,7 +54405,13 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51821,7 +54467,15 @@ paths: tags: - Organizations x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51853,7 +54507,13 @@ paths: tags: - Root x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51902,7 +54562,15 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ + -d '{ }' + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51950,7 +54618,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ @@ -51994,7 +54668,13 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl + - label: curl (Service Account) + lang: cURL + source: |- + curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" + - label: curl (Digest) lang: cURL source: |- curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ From 01743d7af13e3941ea4cd0a05a3ef5aa80f3ffc6 Mon Sep 17 00:00:00 2001 From: andreaangiolillo Date: Wed, 4 Jun 2025 15:35:13 +0200 Subject: [PATCH 2/6] Addressed Gustavo's comments --- .../internal/openapi/filter/code_sample.go | 10 +- .../openapi/filter/code_sample_test.go | 18 +- .../data/split/dev/openapi-v2-2023-01-01.json | 2022 +++++------ .../data/split/dev/openapi-v2-2023-01-01.yaml | 2478 +++++++------- .../data/split/dev/openapi-v2-2023-02-01.json | 2094 ++++++------ .../data/split/dev/openapi-v2-2023-02-01.yaml | 2570 +++++++------- .../data/split/dev/openapi-v2-2023-10-01.json | 2178 ++++++------ .../data/split/dev/openapi-v2-2023-10-01.yaml | 2678 +++++++-------- .../data/split/dev/openapi-v2-2023-11-15.json | 2256 ++++++------- .../data/split/dev/openapi-v2-2023-11-15.yaml | 2772 +++++++-------- .../data/split/dev/openapi-v2-2024-05-30.json | 2364 ++++++------- .../data/split/dev/openapi-v2-2024-05-30.yaml | 2916 ++++++++-------- .../data/split/dev/openapi-v2-2024-08-05.json | 2364 ++++++------- .../data/split/dev/openapi-v2-2024-08-05.yaml | 2916 ++++++++-------- .../data/split/dev/openapi-v2-2025-01-01.json | 2400 ++++++------- .../data/split/dev/openapi-v2-2025-01-01.yaml | 2960 ++++++++--------- 16 files changed, 17498 insertions(+), 17498 deletions(-) diff --git a/tools/cli/internal/openapi/filter/code_sample.go b/tools/cli/internal/openapi/filter/code_sample.go index f796835586..c19cf26c4c 100644 --- a/tools/cli/internal/openapi/filter/code_sample.go +++ b/tools/cli/internal/openapi/filter/code_sample.go @@ -56,7 +56,7 @@ func (f *CodeSampleFilter) Apply() error { func (f *CodeSampleFilter) newDigestCurlCodeSamplesForOperation(pathName, opMethod string) codeSample { version := apiVersion(f.metadata.targetVersion) - source := "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n " + + source := "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas." + version + "+json\" \\\n " switch opMethod { @@ -65,7 +65,7 @@ func (f *CodeSampleFilter) newDigestCurlCodeSamplesForOperation(pathName, opMeth case "DELETE": source += "-X " + opMethod + " \"https://cloud.mongodb.com" + pathName + "\"" case "POST", "PATCH", "PUT": - source += "--header \"Content-Type: application/vnd.atlas." + version + "+json\" \\\n " + source += "--header \"Content-Type: application/json\" \\\n " source += "-X " + opMethod + " \"https://cloud.mongodb.com" + pathName + "\" \\\n " source += "-d " + "'{ }'" } @@ -79,7 +79,7 @@ func (f *CodeSampleFilter) newDigestCurlCodeSamplesForOperation(pathName, opMeth func (f *CodeSampleFilter) newServiceAccountCurlCodeSamplesForOperation(pathName, opMethod string) codeSample { version := apiVersion(f.metadata.targetVersion) - source := "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n " + + source := "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas." + version + "+json\" \\\n " switch opMethod { @@ -88,14 +88,14 @@ func (f *CodeSampleFilter) newServiceAccountCurlCodeSamplesForOperation(pathName case "DELETE": source += "-X " + opMethod + " \"https://cloud.mongodb.com" + pathName + "\"" case "POST", "PATCH", "PUT": - source += "--header \"Content-Type: application/vnd.atlas." + version + "+json\" \\\n " + source += "--header \"Content-Type: application/json\" \\\n " source += "-X " + opMethod + " \"https://cloud.mongodb.com" + pathName + "\" \\\n " source += "-d " + "'{ }'" } return codeSample{ Lang: "cURL", - Label: "curl (Service Account)", + Label: "curl (Service Account Access Token)", Source: source, } } diff --git a/tools/cli/internal/openapi/filter/code_sample_test.go b/tools/cli/internal/openapi/filter/code_sample_test.go index e813c80852..a0c99cdf9f 100644 --- a/tools/cli/internal/openapi/filter/code_sample_test.go +++ b/tools/cli/internal/openapi/filter/code_sample_test.go @@ -78,14 +78,14 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl (Service Account)", - Source: "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n " + + Label: "curl (Service Account Access Token)", + Source: "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n " + + 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/test?pretty=true\"", }, { @@ -147,14 +147,14 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl (Service Account)", - Source: "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n " + + Label: "curl (Service Account Access Token)", + Source: "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n " + + Source: "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { @@ -216,14 +216,14 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl (Service Account)", - Source: "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n " + + Label: "curl (Service Account Access Token)", + Source: "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n " + + Source: "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { 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 b0beb88423..71d231e697 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 @@ -242,13 +242,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -304,13 +304,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -372,13 +372,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -440,13 +440,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -499,13 +499,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -570,13 +570,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -648,13 +648,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -724,13 +724,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -811,13 +811,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -879,13 +879,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -956,13 +956,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1034,13 +1034,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1113,13 +1113,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1203,13 +1203,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1306,13 +1306,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1385,13 +1385,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1471,13 +1471,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1537,13 +1537,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1608,13 +1608,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1699,13 +1699,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1778,13 +1778,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1843,13 +1843,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -1906,13 +1906,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1986,13 +1986,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2061,13 +2061,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2154,13 +2154,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2234,13 +2234,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2315,13 +2315,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2397,13 +2397,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2468,13 +2468,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2542,13 +2542,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2617,13 +2617,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2693,13 +2693,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2780,13 +2780,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2870,13 +2870,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2957,13 +2957,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3044,13 +3044,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3121,13 +3121,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3211,13 +3211,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3298,13 +3298,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3373,13 +3373,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3444,13 +3444,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3525,13 +3525,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3620,13 +3620,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3706,13 +3706,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3768,13 +3768,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3842,13 +3842,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3904,13 +3904,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3975,13 +3975,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4047,13 +4047,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4128,13 +4128,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4207,13 +4207,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4281,13 +4281,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4348,13 +4348,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4438,13 +4438,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4501,13 +4501,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4576,13 +4576,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4662,13 +4662,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4736,13 +4736,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4829,13 +4829,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4910,13 +4910,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4995,13 +4995,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5086,13 +5086,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5171,13 +5171,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5256,13 +5256,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5345,13 +5345,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5425,13 +5425,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5519,13 +5519,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5603,13 +5603,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5692,13 +5692,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5772,13 +5772,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5855,13 +5855,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5947,13 +5947,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6036,13 +6036,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6120,13 +6120,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6195,13 +6195,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6269,13 +6269,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6357,13 +6357,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6444,13 +6444,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6530,13 +6530,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6616,13 +6616,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6703,13 +6703,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6780,13 +6780,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6869,13 +6869,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6956,13 +6956,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7054,13 +7054,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7151,13 +7151,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7245,13 +7245,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7322,13 +7322,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7411,13 +7411,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7488,13 +7488,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7577,13 +7577,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7661,13 +7661,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7754,13 +7754,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7850,13 +7850,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7951,13 +7951,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8046,13 +8046,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8136,13 +8136,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8243,13 +8243,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8323,13 +8323,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8403,13 +8403,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8495,13 +8495,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8594,13 +8594,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8689,13 +8689,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8870,13 +8870,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8957,13 +8957,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9053,13 +9053,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9167,13 +9167,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9260,13 +9260,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -9354,13 +9354,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9462,13 +9462,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9546,13 +9546,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9628,13 +9628,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9718,13 +9718,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9800,13 +9800,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9896,13 +9896,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9969,13 +9969,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10068,13 +10068,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10155,13 +10155,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10245,13 +10245,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10323,13 +10323,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10400,13 +10400,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10491,13 +10491,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10582,13 +10582,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10658,13 +10658,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10742,13 +10742,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10840,13 +10840,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10930,13 +10930,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11015,13 +11015,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11111,13 +11111,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11185,13 +11185,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11308,13 +11308,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11398,13 +11398,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11481,13 +11481,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11552,13 +11552,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11636,13 +11636,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11709,13 +11709,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11805,13 +11805,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11870,13 +11870,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11953,13 +11953,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12030,13 +12030,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12102,13 +12102,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12194,13 +12194,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12272,13 +12272,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12352,13 +12352,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12423,13 +12423,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12495,13 +12495,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12587,13 +12587,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12664,13 +12664,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12747,13 +12747,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12831,13 +12831,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12929,13 +12929,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13030,13 +13030,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13101,13 +13101,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13336,13 +13336,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13423,13 +13423,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13505,13 +13505,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13607,13 +13607,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13690,13 +13690,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13787,13 +13787,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13915,13 +13915,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14040,13 +14040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14102,13 +14102,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14182,13 +14182,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14256,13 +14256,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14339,13 +14339,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14436,13 +14436,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14520,13 +14520,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14658,13 +14658,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14744,13 +14744,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14809,13 +14809,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14920,13 +14920,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15034,13 +15034,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15140,13 +15140,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15217,13 +15217,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15307,13 +15307,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15395,13 +15395,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15506,13 +15506,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15614,13 +15614,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15689,13 +15689,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15768,13 +15768,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15841,13 +15841,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15914,13 +15914,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15991,13 +15991,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16079,13 +16079,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16145,13 +16145,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16219,13 +16219,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16311,13 +16311,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16404,13 +16404,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16508,13 +16508,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16593,13 +16593,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16679,13 +16679,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16761,13 +16761,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16832,13 +16832,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16903,13 +16903,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16962,13 +16962,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17022,13 +17022,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17093,13 +17093,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17152,13 +17152,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17211,13 +17211,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17273,13 +17273,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17335,13 +17335,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17397,13 +17397,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17520,13 +17520,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17608,13 +17608,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17692,13 +17692,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17769,13 +17769,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17844,13 +17844,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17936,13 +17936,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18001,13 +18001,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18075,13 +18075,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18149,13 +18149,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18224,13 +18224,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18313,13 +18313,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18393,13 +18393,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18489,13 +18489,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18566,13 +18566,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18643,13 +18643,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18739,13 +18739,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18829,13 +18829,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18917,13 +18917,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19005,13 +19005,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19082,13 +19082,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19147,13 +19147,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19221,13 +19221,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19297,13 +19297,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19383,13 +19383,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19468,13 +19468,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19551,13 +19551,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19645,13 +19645,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19725,13 +19725,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19814,13 +19814,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19904,13 +19904,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20013,13 +20013,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20112,13 +20112,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20212,13 +20212,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20279,13 +20279,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20358,13 +20358,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20435,13 +20435,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20509,13 +20509,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20586,13 +20586,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20664,13 +20664,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20735,13 +20735,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20808,13 +20808,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20890,13 +20890,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20972,13 +20972,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21093,13 +21093,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21175,13 +21175,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21254,13 +21254,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21384,13 +21384,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21621,13 +21621,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21712,13 +21712,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21827,13 +21827,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21958,13 +21958,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22026,13 +22026,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22092,13 +22092,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22170,13 +22170,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22248,13 +22248,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22325,13 +22325,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22396,13 +22396,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22467,13 +22467,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22544,13 +22544,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22630,13 +22630,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22722,13 +22722,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22811,13 +22811,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22897,13 +22897,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22984,13 +22984,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23058,13 +23058,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23136,13 +23136,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23216,13 +23216,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23294,13 +23294,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23380,13 +23380,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23448,13 +23448,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23525,13 +23525,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23605,13 +23605,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23692,13 +23692,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23773,13 +23773,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23869,13 +23869,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23931,13 +23931,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24005,13 +24005,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24064,13 +24064,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24126,13 +24126,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24202,13 +24202,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24276,13 +24276,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24365,13 +24365,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24442,13 +24442,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24533,13 +24533,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24618,13 +24618,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24698,13 +24698,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24769,13 +24769,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -24838,13 +24838,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24918,13 +24918,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24993,13 +24993,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25068,13 +25068,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25146,13 +25146,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25222,13 +25222,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25312,13 +25312,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25399,13 +25399,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25500,13 +25500,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25595,13 +25595,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25685,13 +25685,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25758,13 +25758,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25844,13 +25844,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25954,13 +25954,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26040,13 +26040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26108,13 +26108,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26193,13 +26193,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26273,13 +26273,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26350,13 +26350,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26427,13 +26427,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26504,13 +26504,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26579,13 +26579,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26668,13 +26668,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26821,13 +26821,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26886,13 +26886,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26969,13 +26969,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27045,13 +27045,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27113,13 +27113,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27175,13 +27175,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27249,13 +27249,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27317,13 +27317,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27394,13 +27394,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27475,13 +27475,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27559,13 +27559,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27640,13 +27640,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27724,13 +27724,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27806,13 +27806,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27902,13 +27902,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27995,13 +27995,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28094,13 +28094,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28187,13 +28187,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28264,13 +28264,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28344,13 +28344,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28435,13 +28435,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28508,13 +28508,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28580,13 +28580,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28654,13 +28654,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 104fa24566..bf483b9097 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 @@ -28293,16 +28293,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -28336,16 +28336,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -28380,16 +28380,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -28424,16 +28424,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -28466,16 +28466,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -28513,16 +28513,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -28568,16 +28568,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -28622,16 +28622,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -28683,21 +28683,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -28733,16 +28733,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -28785,21 +28785,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: Atlas CLI @@ -28843,16 +28843,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -28898,16 +28898,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -28960,21 +28960,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: Atlas CLI @@ -29033,16 +29033,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -29088,16 +29088,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -29151,21 +29151,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: Atlas CLI @@ -29201,16 +29201,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -29247,16 +29247,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -29310,21 +29310,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: Atlas CLI @@ -29358,16 +29358,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -29401,16 +29401,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -29455,21 +29455,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: Atlas CLI @@ -29507,16 +29507,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -29567,21 +29567,21 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -29631,16 +29631,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -29687,16 +29687,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -29743,16 +29743,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -29791,16 +29791,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -29844,21 +29844,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: Atlas CLI @@ -29903,16 +29903,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -29959,16 +29959,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -30024,21 +30024,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -30095,21 +30095,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -30159,16 +30159,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -30218,16 +30218,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -30274,16 +30274,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -30339,21 +30339,21 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: Atlas CLI @@ -30403,16 +30403,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -30451,16 +30451,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -30499,21 +30499,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -30559,16 +30559,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -30621,21 +30621,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -30684,21 +30684,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -30730,16 +30730,16 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -30780,21 +30780,21 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: Atlas CLI @@ -30826,16 +30826,16 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -30874,21 +30874,21 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: Atlas CLI @@ -30924,16 +30924,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -30980,21 +30980,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: Atlas CLI @@ -31040,16 +31040,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -31093,16 +31093,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -31139,16 +31139,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -31201,21 +31201,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: Atlas CLI @@ -31248,16 +31248,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -31299,21 +31299,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: Atlas CLI @@ -31362,16 +31362,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -31413,16 +31413,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -31477,21 +31477,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: Atlas CLI @@ -31533,16 +31533,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -31591,21 +31591,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: Atlas CLI @@ -31657,16 +31657,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -31713,16 +31713,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -31778,21 +31778,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: Atlas CLI @@ -31837,16 +31837,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -31899,21 +31899,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: Atlas CLI @@ -31959,16 +31959,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -32013,16 +32013,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -32079,21 +32079,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -32145,16 +32145,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -32204,16 +32204,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -32257,16 +32257,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -32309,16 +32309,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -32373,21 +32373,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: Atlas CLI @@ -32434,16 +32434,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -32496,21 +32496,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: Atlas CLI @@ -32562,16 +32562,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -32623,16 +32623,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -32691,21 +32691,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -32755,16 +32755,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -32816,16 +32816,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -32869,16 +32869,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -32935,21 +32935,21 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: Atlas CLI @@ -33003,21 +33003,21 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: Atlas CLI @@ -33060,16 +33060,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -33122,16 +33122,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -33175,16 +33175,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -33237,16 +33237,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -33292,16 +33292,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -33357,16 +33357,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -33423,21 +33423,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: Atlas CLI @@ -33497,16 +33497,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -33564,16 +33564,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -33628,16 +33628,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -33703,21 +33703,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: Atlas CLI @@ -33763,16 +33763,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -33819,16 +33819,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -33883,21 +33883,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: Atlas CLI @@ -33955,16 +33955,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -34021,21 +34021,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: Atlas CLI @@ -34152,21 +34152,21 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: Atlas CLI @@ -34213,16 +34213,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -34279,21 +34279,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: Atlas CLI @@ -34348,16 +34348,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -34414,16 +34414,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -34489,21 +34489,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: Atlas CLI @@ -34574,16 +34574,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -34632,16 +34632,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -34689,16 +34689,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -34751,21 +34751,21 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: Atlas CLI @@ -34812,16 +34812,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -34879,21 +34879,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: Atlas CLI @@ -34934,21 +34934,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: Atlas CLI @@ -35007,16 +35007,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -35067,21 +35067,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -35137,16 +35137,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -35191,16 +35191,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -35245,16 +35245,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -35308,21 +35308,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -35375,21 +35375,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -35435,16 +35435,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -35496,21 +35496,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: Atlas CLI @@ -35565,16 +35565,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -35628,16 +35628,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -35688,16 +35688,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -35755,21 +35755,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -35810,16 +35810,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -35897,16 +35897,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -35955,16 +35955,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -36012,21 +36012,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: Atlas CLI @@ -36073,21 +36073,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: Atlas CLI @@ -36135,16 +36135,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -36191,21 +36191,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: Atlas CLI @@ -36253,16 +36253,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -36304,16 +36304,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -36370,21 +36370,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: Atlas CLI @@ -36419,16 +36419,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -36463,16 +36463,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -36519,21 +36519,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: Atlas CLI @@ -36575,16 +36575,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -36624,16 +36624,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -36686,21 +36686,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: Atlas CLI @@ -36743,16 +36743,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -36797,21 +36797,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: Atlas CLI @@ -36849,16 +36849,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -36899,16 +36899,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -36961,21 +36961,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -37017,16 +37017,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -37083,16 +37083,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -37149,16 +37149,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -37225,21 +37225,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -37301,16 +37301,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -37346,16 +37346,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -37493,21 +37493,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: Atlas CLI @@ -37569,16 +37569,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -37638,16 +37638,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -37720,21 +37720,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: Atlas CLI @@ -37777,16 +37777,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -37848,21 +37848,21 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: Atlas CLI @@ -37940,16 +37940,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -38025,16 +38025,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -38070,16 +38070,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -38136,21 +38136,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: Atlas CLI @@ -38190,16 +38190,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -38246,21 +38246,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: Atlas CLI @@ -38316,16 +38316,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -38374,16 +38374,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -38473,16 +38473,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -38535,16 +38535,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -38579,16 +38579,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -38653,16 +38653,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -38726,16 +38726,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -38798,16 +38798,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -38847,16 +38847,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -38911,16 +38911,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -38974,16 +38974,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -39049,21 +39049,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -39126,21 +39126,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -39181,16 +39181,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -39235,21 +39235,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -39289,21 +39289,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -39345,16 +39345,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -39399,16 +39399,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -39461,21 +39461,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -39510,16 +39510,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -39560,16 +39560,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -39642,16 +39642,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -39725,16 +39725,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -39818,21 +39818,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -39887,21 +39887,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: Atlas CLI @@ -39939,16 +39939,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -39986,21 +39986,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: Atlas CLI @@ -40048,21 +40048,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: Atlas CLI @@ -40110,16 +40110,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -40151,16 +40151,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -40192,16 +40192,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -40241,21 +40241,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: Atlas CLI @@ -40286,21 +40286,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: Atlas CLI @@ -40331,21 +40331,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: Atlas CLI @@ -40377,16 +40377,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -40419,16 +40419,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -40461,21 +40461,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: Atlas CLI @@ -40548,16 +40548,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -40605,16 +40605,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -40662,21 +40662,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: Atlas CLI @@ -40719,16 +40719,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -40771,16 +40771,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -40834,21 +40834,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: Atlas CLI @@ -40883,16 +40883,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -40934,21 +40934,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: Atlas CLI @@ -40990,16 +40990,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -41042,16 +41042,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -41104,21 +41104,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: Atlas CLI @@ -41163,16 +41163,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -41226,16 +41226,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -41279,21 +41279,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: Atlas CLI @@ -41336,21 +41336,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: Atlas CLI @@ -41403,16 +41403,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -41466,16 +41466,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -41528,16 +41528,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -41588,21 +41588,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: Atlas CLI @@ -41647,16 +41647,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -41709,16 +41709,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -41772,16 +41772,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -41847,21 +41847,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -41920,16 +41920,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -41990,16 +41990,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -42042,21 +42042,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: Atlas CLI @@ -42090,16 +42090,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -42140,21 +42140,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: Atlas CLI @@ -42197,16 +42197,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -42260,21 +42260,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -42324,16 +42324,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -42383,16 +42383,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -42449,21 +42449,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: Atlas CLI @@ -42499,16 +42499,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -42553,21 +42553,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: Atlas CLI @@ -42606,16 +42606,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -42675,21 +42675,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: Atlas CLI @@ -42732,16 +42732,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -42786,16 +42786,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -42831,16 +42831,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -42881,16 +42881,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -42934,16 +42934,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -42990,16 +42990,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -43072,16 +43072,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -43125,16 +43125,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -43180,16 +43180,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -43278,16 +43278,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -43487,16 +43487,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -43557,16 +43557,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -43644,16 +43644,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -43738,16 +43738,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -43784,16 +43784,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -43829,16 +43829,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -43882,21 +43882,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -43939,21 +43939,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -43997,21 +43997,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: Atlas CLI @@ -44051,16 +44051,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -44096,16 +44096,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -44148,21 +44148,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: Atlas CLI @@ -44208,16 +44208,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -44271,21 +44271,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -44337,16 +44337,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -44393,16 +44393,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -44455,16 +44455,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -44506,16 +44506,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -44561,21 +44561,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: Atlas CLI @@ -44620,16 +44620,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -44674,16 +44674,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -44733,21 +44733,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: Atlas CLI @@ -44783,16 +44783,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -44835,21 +44835,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: Atlas CLI @@ -44890,16 +44890,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -44949,21 +44949,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: Atlas CLI @@ -45010,16 +45010,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -45076,21 +45076,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -45122,16 +45122,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -45175,21 +45175,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: Atlas CLI @@ -45223,16 +45223,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -45265,16 +45265,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -45316,21 +45316,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: Atlas CLI @@ -45371,16 +45371,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -45428,16 +45428,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -45481,16 +45481,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -45543,21 +45543,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -45602,16 +45602,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -45657,16 +45657,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -45712,21 +45712,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: Atlas CLI @@ -45770,16 +45770,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -45817,16 +45817,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -45871,21 +45871,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -45923,16 +45923,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -45974,21 +45974,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -46032,16 +46032,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -46085,16 +46085,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -46147,21 +46147,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -46208,16 +46208,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -46274,21 +46274,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -46344,16 +46344,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -46407,16 +46407,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -46457,21 +46457,21 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: Atlas CLI @@ -46521,16 +46521,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -46598,16 +46598,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -46660,16 +46660,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -46706,16 +46706,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -46768,16 +46768,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -46822,16 +46822,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -46874,21 +46874,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -46930,21 +46930,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -46986,16 +46986,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -47039,16 +47039,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -47100,21 +47100,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -47210,16 +47210,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -47269,16 +47269,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -47329,16 +47329,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -47373,16 +47373,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -47419,16 +47419,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -47462,16 +47462,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -47512,21 +47512,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: Atlas CLI @@ -47562,16 +47562,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -47614,21 +47614,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: Atlas CLI @@ -47670,16 +47670,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -47727,21 +47727,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: Atlas CLI @@ -47789,16 +47789,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -47846,16 +47846,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -47912,21 +47912,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -47978,16 +47978,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -48046,21 +48046,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: Atlas CLI @@ -48115,16 +48115,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -48170,16 +48170,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -48219,16 +48219,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -48275,16 +48275,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -48337,21 +48337,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -48396,21 +48396,21 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: Atlas CLI @@ -48452,16 +48452,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -48502,16 +48502,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 2a07d8fe96..558f1e80e6 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 @@ -246,13 +246,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -308,13 +308,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -376,13 +376,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -444,13 +444,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -503,13 +503,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -574,13 +574,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -652,13 +652,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -728,13 +728,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -815,13 +815,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -883,13 +883,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -960,13 +960,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1038,13 +1038,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1117,13 +1117,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1207,13 +1207,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1310,13 +1310,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1389,13 +1389,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1475,13 +1475,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1541,13 +1541,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1612,13 +1612,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1703,13 +1703,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1782,13 +1782,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1847,13 +1847,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -1910,13 +1910,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1990,13 +1990,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2071,13 +2071,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2146,13 +2146,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2239,13 +2239,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2319,13 +2319,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2400,13 +2400,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2482,13 +2482,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2553,13 +2553,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2627,13 +2627,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2702,13 +2702,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2778,13 +2778,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2865,13 +2865,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2955,13 +2955,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3042,13 +3042,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3129,13 +3129,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3206,13 +3206,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3296,13 +3296,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3383,13 +3383,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3458,13 +3458,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3529,13 +3529,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3610,13 +3610,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3705,13 +3705,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3791,13 +3791,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3853,13 +3853,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3927,13 +3927,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3989,13 +3989,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4060,13 +4060,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4132,13 +4132,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4213,13 +4213,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4292,13 +4292,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4366,13 +4366,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4433,13 +4433,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4523,13 +4523,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4586,13 +4586,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4661,13 +4661,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4747,13 +4747,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4821,13 +4821,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4914,13 +4914,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4995,13 +4995,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5080,13 +5080,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5171,13 +5171,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5256,13 +5256,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5341,13 +5341,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5429,13 +5429,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5508,13 +5508,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5602,13 +5602,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5686,13 +5686,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5775,13 +5775,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5855,13 +5855,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5938,13 +5938,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6030,13 +6030,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6119,13 +6119,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6203,13 +6203,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6278,13 +6278,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6352,13 +6352,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6440,13 +6440,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6527,13 +6527,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6613,13 +6613,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6699,13 +6699,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6786,13 +6786,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6863,13 +6863,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6952,13 +6952,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7039,13 +7039,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7137,13 +7137,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7234,13 +7234,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7328,13 +7328,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7405,13 +7405,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7494,13 +7494,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7571,13 +7571,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7660,13 +7660,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7744,13 +7744,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7837,13 +7837,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7933,13 +7933,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8034,13 +8034,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8129,13 +8129,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8219,13 +8219,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8326,13 +8326,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8406,13 +8406,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8486,13 +8486,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8578,13 +8578,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8677,13 +8677,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8772,13 +8772,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8953,13 +8953,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9040,13 +9040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9136,13 +9136,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9250,13 +9250,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9343,13 +9343,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -9437,13 +9437,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9545,13 +9545,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9629,13 +9629,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9711,13 +9711,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9801,13 +9801,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9883,13 +9883,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9979,13 +9979,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10051,13 +10051,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10149,13 +10149,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10236,13 +10236,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10326,13 +10326,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10404,13 +10404,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10481,13 +10481,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10572,13 +10572,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10663,13 +10663,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10739,13 +10739,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10823,13 +10823,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10921,13 +10921,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11011,13 +11011,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11096,13 +11096,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11192,13 +11192,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11266,13 +11266,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11388,13 +11388,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11477,13 +11477,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11560,13 +11560,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11631,13 +11631,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11715,13 +11715,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11788,13 +11788,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11884,13 +11884,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11949,13 +11949,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12032,13 +12032,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12109,13 +12109,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12181,13 +12181,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12273,13 +12273,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12351,13 +12351,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12431,13 +12431,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12502,13 +12502,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12574,13 +12574,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12666,13 +12666,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12743,13 +12743,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12826,13 +12826,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12910,13 +12910,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13008,13 +13008,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13109,13 +13109,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13180,13 +13180,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13415,13 +13415,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13502,13 +13502,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13584,13 +13584,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13686,13 +13686,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13769,13 +13769,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13866,13 +13866,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13994,13 +13994,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14119,13 +14119,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14181,13 +14181,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14261,13 +14261,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14335,13 +14335,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14418,13 +14418,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14515,13 +14515,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14599,13 +14599,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14737,13 +14737,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14823,13 +14823,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14888,13 +14888,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14999,13 +14999,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15113,13 +15113,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15219,13 +15219,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15296,13 +15296,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15386,13 +15386,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15474,13 +15474,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15585,13 +15585,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15693,13 +15693,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15768,13 +15768,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15847,13 +15847,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15920,13 +15920,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15993,13 +15993,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16070,13 +16070,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16158,13 +16158,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16224,13 +16224,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16298,13 +16298,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16390,13 +16390,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16483,13 +16483,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16587,13 +16587,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16672,13 +16672,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16758,13 +16758,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16840,13 +16840,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16911,13 +16911,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16982,13 +16982,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17041,13 +17041,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17101,13 +17101,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17172,13 +17172,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17231,13 +17231,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17290,13 +17290,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17352,13 +17352,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17414,13 +17414,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17476,13 +17476,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17599,13 +17599,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17687,13 +17687,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17771,13 +17771,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17848,13 +17848,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17923,13 +17923,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18015,13 +18015,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18080,13 +18080,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18154,13 +18154,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18228,13 +18228,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18303,13 +18303,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18392,13 +18392,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18472,13 +18472,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18568,13 +18568,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18645,13 +18645,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18722,13 +18722,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18818,13 +18818,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18908,13 +18908,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18996,13 +18996,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19084,13 +19084,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19161,13 +19161,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19226,13 +19226,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19300,13 +19300,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19376,13 +19376,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19462,13 +19462,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19547,13 +19547,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19630,13 +19630,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19724,13 +19724,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19804,13 +19804,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19893,13 +19893,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19983,13 +19983,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20092,13 +20092,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20191,13 +20191,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20291,13 +20291,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20358,13 +20358,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20437,13 +20437,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20514,13 +20514,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20588,13 +20588,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20665,13 +20665,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20743,13 +20743,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20814,13 +20814,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20887,13 +20887,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20969,13 +20969,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21051,13 +21051,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21172,13 +21172,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21254,13 +21254,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21333,13 +21333,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21463,13 +21463,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21700,13 +21700,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21791,13 +21791,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21906,13 +21906,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22037,13 +22037,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22105,13 +22105,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22171,13 +22171,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22249,13 +22249,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22327,13 +22327,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22404,13 +22404,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22475,13 +22475,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22546,13 +22546,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22623,13 +22623,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22709,13 +22709,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22801,13 +22801,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22890,13 +22890,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22976,13 +22976,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23063,13 +23063,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23137,13 +23137,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23215,13 +23215,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23295,13 +23295,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23373,13 +23373,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23459,13 +23459,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23527,13 +23527,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23604,13 +23604,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23672,13 +23672,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23746,13 +23746,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23823,13 +23823,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23903,13 +23903,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23992,13 +23992,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24096,13 +24096,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24176,13 +24176,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24262,13 +24262,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24348,13 +24348,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24426,13 +24426,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24524,13 +24524,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24604,13 +24604,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24691,13 +24691,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24772,13 +24772,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24868,13 +24868,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24930,13 +24930,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25004,13 +25004,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25063,13 +25063,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25125,13 +25125,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25201,13 +25201,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25275,13 +25275,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25364,13 +25364,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25441,13 +25441,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25532,13 +25532,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25617,13 +25617,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25697,13 +25697,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25768,13 +25768,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -25837,13 +25837,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25917,13 +25917,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25992,13 +25992,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26067,13 +26067,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26145,13 +26145,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26221,13 +26221,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26311,13 +26311,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26398,13 +26398,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26499,13 +26499,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26594,13 +26594,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26684,13 +26684,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26757,13 +26757,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26843,13 +26843,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26953,13 +26953,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27039,13 +27039,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27107,13 +27107,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27192,13 +27192,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27272,13 +27272,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27349,13 +27349,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27426,13 +27426,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27503,13 +27503,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27578,13 +27578,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27667,13 +27667,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27820,13 +27820,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27885,13 +27885,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27968,13 +27968,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28044,13 +28044,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28112,13 +28112,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28174,13 +28174,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28248,13 +28248,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28316,13 +28316,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28393,13 +28393,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28474,13 +28474,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28558,13 +28558,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28639,13 +28639,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28723,13 +28723,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28805,13 +28805,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28901,13 +28901,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28994,13 +28994,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29093,13 +29093,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29186,13 +29186,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29263,13 +29263,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29343,13 +29343,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29434,13 +29434,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29507,13 +29507,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29579,13 +29579,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29653,13 +29653,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 862240d4ae..e6aeee08fa 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 @@ -28657,16 +28657,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -28700,16 +28700,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -28744,16 +28744,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -28788,16 +28788,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -28830,16 +28830,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -28877,16 +28877,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -28932,16 +28932,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -28986,16 +28986,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -29047,21 +29047,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -29097,16 +29097,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -29149,21 +29149,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: Atlas CLI @@ -29207,16 +29207,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -29262,16 +29262,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -29324,21 +29324,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: Atlas CLI @@ -29397,16 +29397,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -29452,16 +29452,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -29515,21 +29515,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: Atlas CLI @@ -29565,16 +29565,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -29611,16 +29611,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -29674,21 +29674,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: Atlas CLI @@ -29722,16 +29722,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -29765,16 +29765,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -29819,21 +29819,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: Atlas CLI @@ -29877,21 +29877,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: Atlas CLI @@ -29929,16 +29929,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -29989,21 +29989,21 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -30053,16 +30053,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -30109,16 +30109,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -30165,16 +30165,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -30213,16 +30213,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -30266,21 +30266,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: Atlas CLI @@ -30325,16 +30325,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -30381,16 +30381,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -30446,21 +30446,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -30517,21 +30517,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -30581,16 +30581,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -30640,16 +30640,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -30696,16 +30696,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -30761,21 +30761,21 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: Atlas CLI @@ -30825,16 +30825,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -30873,16 +30873,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -30921,21 +30921,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -30981,16 +30981,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -31043,21 +31043,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -31106,21 +31106,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -31152,16 +31152,16 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -31202,21 +31202,21 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: Atlas CLI @@ -31248,16 +31248,16 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -31296,21 +31296,21 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: Atlas CLI @@ -31346,16 +31346,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -31402,21 +31402,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: Atlas CLI @@ -31462,16 +31462,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -31515,16 +31515,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -31561,16 +31561,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -31623,21 +31623,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: Atlas CLI @@ -31670,16 +31670,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -31721,21 +31721,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: Atlas CLI @@ -31784,16 +31784,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -31835,16 +31835,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -31899,21 +31899,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: Atlas CLI @@ -31955,16 +31955,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -32013,21 +32013,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: Atlas CLI @@ -32078,16 +32078,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -32133,16 +32133,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -32198,21 +32198,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: Atlas CLI @@ -32257,16 +32257,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -32319,21 +32319,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: Atlas CLI @@ -32379,16 +32379,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -32433,16 +32433,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -32499,21 +32499,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -32565,16 +32565,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -32624,16 +32624,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -32677,16 +32677,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -32729,16 +32729,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -32793,21 +32793,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: Atlas CLI @@ -32854,16 +32854,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -32916,21 +32916,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: Atlas CLI @@ -32982,16 +32982,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -33043,16 +33043,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -33111,21 +33111,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -33175,16 +33175,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -33236,16 +33236,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -33289,16 +33289,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -33355,21 +33355,21 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: Atlas CLI @@ -33423,21 +33423,21 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: Atlas CLI @@ -33480,16 +33480,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -33542,16 +33542,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -33595,16 +33595,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -33657,16 +33657,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -33712,16 +33712,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -33777,16 +33777,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -33843,21 +33843,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: Atlas CLI @@ -33917,16 +33917,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -33984,16 +33984,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -34048,16 +34048,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -34123,21 +34123,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: Atlas CLI @@ -34183,16 +34183,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -34239,16 +34239,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -34303,21 +34303,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: Atlas CLI @@ -34375,16 +34375,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -34441,21 +34441,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: Atlas CLI @@ -34572,21 +34572,21 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: Atlas CLI @@ -34633,16 +34633,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -34699,21 +34699,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: Atlas CLI @@ -34768,16 +34768,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -34834,16 +34834,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -34909,21 +34909,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: Atlas CLI @@ -34994,16 +34994,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -35052,16 +35052,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -35109,16 +35109,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -35171,21 +35171,21 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: Atlas CLI @@ -35232,16 +35232,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -35299,21 +35299,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: Atlas CLI @@ -35353,21 +35353,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: Atlas CLI @@ -35425,16 +35425,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -35485,21 +35485,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -35555,16 +35555,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -35609,16 +35609,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -35663,16 +35663,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -35726,21 +35726,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -35793,21 +35793,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -35853,16 +35853,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -35914,21 +35914,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: Atlas CLI @@ -35983,16 +35983,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -36046,16 +36046,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -36106,16 +36106,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -36173,21 +36173,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -36228,16 +36228,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -36314,16 +36314,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -36371,16 +36371,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -36428,21 +36428,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: Atlas CLI @@ -36489,21 +36489,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: Atlas CLI @@ -36551,16 +36551,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -36607,21 +36607,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: Atlas CLI @@ -36669,16 +36669,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -36720,16 +36720,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -36786,21 +36786,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: Atlas CLI @@ -36835,16 +36835,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -36879,16 +36879,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -36935,21 +36935,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: Atlas CLI @@ -36991,16 +36991,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -37040,16 +37040,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -37102,21 +37102,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: Atlas CLI @@ -37159,16 +37159,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -37213,21 +37213,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: Atlas CLI @@ -37265,16 +37265,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -37315,16 +37315,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -37377,21 +37377,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -37433,16 +37433,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -37499,16 +37499,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -37565,16 +37565,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -37641,21 +37641,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -37717,16 +37717,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -37762,16 +37762,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -37909,21 +37909,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: Atlas CLI @@ -37985,16 +37985,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -38054,16 +38054,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -38136,21 +38136,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: Atlas CLI @@ -38193,16 +38193,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -38264,21 +38264,21 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: Atlas CLI @@ -38356,16 +38356,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -38441,16 +38441,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -38486,16 +38486,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -38552,21 +38552,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: Atlas CLI @@ -38606,16 +38606,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -38662,21 +38662,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: Atlas CLI @@ -38732,16 +38732,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -38790,16 +38790,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -38889,16 +38889,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -38951,16 +38951,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -38995,16 +38995,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -39069,16 +39069,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -39142,16 +39142,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -39214,16 +39214,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -39263,16 +39263,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -39327,16 +39327,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -39390,16 +39390,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -39465,21 +39465,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -39542,21 +39542,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -39597,16 +39597,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -39651,21 +39651,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -39705,21 +39705,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -39761,16 +39761,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -39815,16 +39815,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -39877,21 +39877,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -39926,16 +39926,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -39976,16 +39976,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -40058,16 +40058,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -40141,16 +40141,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -40234,21 +40234,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -40303,21 +40303,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: Atlas CLI @@ -40355,16 +40355,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -40402,21 +40402,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: Atlas CLI @@ -40464,21 +40464,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: Atlas CLI @@ -40526,16 +40526,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -40567,16 +40567,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -40608,16 +40608,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -40657,21 +40657,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: Atlas CLI @@ -40702,21 +40702,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: Atlas CLI @@ -40747,21 +40747,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: Atlas CLI @@ -40793,16 +40793,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -40835,16 +40835,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -40877,21 +40877,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: Atlas CLI @@ -40964,16 +40964,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -41021,16 +41021,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -41078,21 +41078,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: Atlas CLI @@ -41135,16 +41135,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -41187,16 +41187,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -41250,21 +41250,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: Atlas CLI @@ -41299,16 +41299,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -41350,21 +41350,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: Atlas CLI @@ -41406,16 +41406,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -41458,16 +41458,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -41520,21 +41520,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: Atlas CLI @@ -41579,16 +41579,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -41642,16 +41642,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -41695,21 +41695,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: Atlas CLI @@ -41752,21 +41752,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: Atlas CLI @@ -41819,16 +41819,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -41882,16 +41882,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -41944,16 +41944,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -42004,21 +42004,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: Atlas CLI @@ -42063,16 +42063,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -42125,16 +42125,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -42188,16 +42188,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -42263,21 +42263,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -42336,16 +42336,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -42406,16 +42406,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -42458,21 +42458,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: Atlas CLI @@ -42506,16 +42506,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -42556,21 +42556,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: Atlas CLI @@ -42613,16 +42613,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -42676,21 +42676,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -42740,16 +42740,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -42799,16 +42799,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -42865,21 +42865,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: Atlas CLI @@ -42915,16 +42915,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -42969,21 +42969,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: Atlas CLI @@ -43022,16 +43022,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -43091,21 +43091,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: Atlas CLI @@ -43148,16 +43148,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -43202,16 +43202,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -43247,16 +43247,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -43297,16 +43297,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -43350,16 +43350,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -43406,16 +43406,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -43488,16 +43488,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -43541,16 +43541,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -43596,16 +43596,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -43694,16 +43694,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -43903,16 +43903,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -43973,16 +43973,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -44060,16 +44060,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -44154,16 +44154,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -44200,16 +44200,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -44245,16 +44245,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -44298,21 +44298,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -44355,21 +44355,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -44413,21 +44413,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: Atlas CLI @@ -44467,16 +44467,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -44512,16 +44512,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -44564,21 +44564,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: Atlas CLI @@ -44624,16 +44624,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -44687,21 +44687,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -44753,16 +44753,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -44809,16 +44809,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -44871,16 +44871,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -44922,16 +44922,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -44977,21 +44977,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: Atlas CLI @@ -45036,16 +45036,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -45090,16 +45090,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -45149,21 +45149,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: Atlas CLI @@ -45199,16 +45199,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -45251,21 +45251,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: Atlas CLI @@ -45299,16 +45299,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -45349,21 +45349,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: Atlas CLI @@ -45405,16 +45405,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -45460,16 +45460,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -45520,21 +45520,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -45597,16 +45597,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -45649,16 +45649,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -45707,21 +45707,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: Atlas CLI @@ -45769,16 +45769,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -45823,16 +45823,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -45889,21 +45889,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: Atlas CLI @@ -45944,16 +45944,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -46003,21 +46003,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: Atlas CLI @@ -46064,16 +46064,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -46130,21 +46130,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -46176,16 +46176,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -46229,21 +46229,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: Atlas CLI @@ -46277,16 +46277,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -46319,16 +46319,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -46370,21 +46370,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: Atlas CLI @@ -46425,16 +46425,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -46482,16 +46482,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -46535,16 +46535,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -46597,21 +46597,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -46656,16 +46656,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -46711,16 +46711,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -46766,21 +46766,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: Atlas CLI @@ -46824,16 +46824,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -46871,16 +46871,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -46925,21 +46925,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -46977,16 +46977,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -47028,21 +47028,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -47086,16 +47086,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -47139,16 +47139,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -47201,21 +47201,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -47262,16 +47262,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -47328,21 +47328,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -47398,16 +47398,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -47461,16 +47461,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -47511,21 +47511,21 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: Atlas CLI @@ -47575,16 +47575,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -47652,16 +47652,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -47714,16 +47714,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -47760,16 +47760,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -47822,16 +47822,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -47876,16 +47876,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -47928,21 +47928,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -47984,21 +47984,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -48040,16 +48040,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -48093,16 +48093,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -48154,21 +48154,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -48264,16 +48264,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -48323,16 +48323,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -48383,16 +48383,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -48427,16 +48427,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -48473,16 +48473,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -48516,16 +48516,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -48566,21 +48566,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: Atlas CLI @@ -48616,16 +48616,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -48668,21 +48668,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: Atlas CLI @@ -48724,16 +48724,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -48781,21 +48781,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: Atlas CLI @@ -48843,16 +48843,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -48900,16 +48900,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -48966,21 +48966,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -49032,16 +49032,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -49100,21 +49100,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: Atlas CLI @@ -49169,16 +49169,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -49224,16 +49224,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -49273,16 +49273,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -49329,16 +49329,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -49391,21 +49391,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -49450,21 +49450,21 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: Atlas CLI @@ -49506,16 +49506,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -49556,16 +49556,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 dd3fcea210..7b886e0fb8 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 @@ -246,13 +246,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -308,13 +308,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -376,13 +376,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -444,13 +444,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -503,13 +503,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -574,13 +574,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -652,13 +652,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -728,13 +728,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -815,13 +815,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -883,13 +883,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -960,13 +960,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1038,13 +1038,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1117,13 +1117,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1207,13 +1207,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1310,13 +1310,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1389,13 +1389,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1475,13 +1475,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1541,13 +1541,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1612,13 +1612,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1703,13 +1703,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1782,13 +1782,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1847,13 +1847,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -1910,13 +1910,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1990,13 +1990,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2071,13 +2071,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2146,13 +2146,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2239,13 +2239,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2319,13 +2319,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2400,13 +2400,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2482,13 +2482,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2553,13 +2553,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2627,13 +2627,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2702,13 +2702,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2778,13 +2778,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2865,13 +2865,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2955,13 +2955,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3042,13 +3042,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3129,13 +3129,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3206,13 +3206,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3296,13 +3296,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3383,13 +3383,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3458,13 +3458,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3529,13 +3529,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3610,13 +3610,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3705,13 +3705,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3791,13 +3791,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3853,13 +3853,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3927,13 +3927,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3989,13 +3989,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4060,13 +4060,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4132,13 +4132,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4213,13 +4213,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4292,13 +4292,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4366,13 +4366,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4432,13 +4432,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4519,13 +4519,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4581,13 +4581,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4656,13 +4656,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4742,13 +4742,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4816,13 +4816,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4909,13 +4909,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4990,13 +4990,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5075,13 +5075,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5166,13 +5166,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5251,13 +5251,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5336,13 +5336,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5424,13 +5424,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5503,13 +5503,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5597,13 +5597,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5681,13 +5681,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5770,13 +5770,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5850,13 +5850,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5933,13 +5933,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6025,13 +6025,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6114,13 +6114,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6198,13 +6198,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6273,13 +6273,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6347,13 +6347,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6435,13 +6435,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6522,13 +6522,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6608,13 +6608,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6694,13 +6694,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6781,13 +6781,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6858,13 +6858,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6947,13 +6947,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7034,13 +7034,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7132,13 +7132,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7229,13 +7229,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7323,13 +7323,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7400,13 +7400,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7489,13 +7489,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7566,13 +7566,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7655,13 +7655,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7739,13 +7739,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7832,13 +7832,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7928,13 +7928,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8029,13 +8029,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8124,13 +8124,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8214,13 +8214,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8321,13 +8321,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8401,13 +8401,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8481,13 +8481,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8573,13 +8573,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8672,13 +8672,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8767,13 +8767,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8948,13 +8948,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9035,13 +9035,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9131,13 +9131,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9245,13 +9245,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9338,13 +9338,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -9432,13 +9432,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9540,13 +9540,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9624,13 +9624,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9706,13 +9706,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9796,13 +9796,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9878,13 +9878,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9974,13 +9974,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10046,13 +10046,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10144,13 +10144,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10231,13 +10231,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10321,13 +10321,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10399,13 +10399,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10476,13 +10476,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10567,13 +10567,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10658,13 +10658,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10734,13 +10734,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10818,13 +10818,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10916,13 +10916,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11006,13 +11006,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11091,13 +11091,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11187,13 +11187,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11261,13 +11261,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11383,13 +11383,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11472,13 +11472,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11555,13 +11555,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11626,13 +11626,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11710,13 +11710,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11783,13 +11783,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11879,13 +11879,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11944,13 +11944,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12027,13 +12027,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12104,13 +12104,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12176,13 +12176,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12268,13 +12268,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12346,13 +12346,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12426,13 +12426,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12497,13 +12497,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12569,13 +12569,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12661,13 +12661,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12738,13 +12738,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12821,13 +12821,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12905,13 +12905,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13003,13 +13003,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13104,13 +13104,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13175,13 +13175,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13410,13 +13410,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13497,13 +13497,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13579,13 +13579,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13681,13 +13681,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13764,13 +13764,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13861,13 +13861,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13989,13 +13989,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14114,13 +14114,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14176,13 +14176,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14256,13 +14256,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14330,13 +14330,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14413,13 +14413,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14510,13 +14510,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14594,13 +14594,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14732,13 +14732,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14818,13 +14818,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14883,13 +14883,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14994,13 +14994,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15108,13 +15108,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15214,13 +15214,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15291,13 +15291,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15381,13 +15381,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15469,13 +15469,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15580,13 +15580,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15688,13 +15688,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15763,13 +15763,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15842,13 +15842,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15915,13 +15915,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15988,13 +15988,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16065,13 +16065,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16153,13 +16153,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16219,13 +16219,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16293,13 +16293,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16385,13 +16385,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16478,13 +16478,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16582,13 +16582,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16667,13 +16667,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16753,13 +16753,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16835,13 +16835,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16906,13 +16906,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16977,13 +16977,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17036,13 +17036,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17096,13 +17096,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17167,13 +17167,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17226,13 +17226,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17285,13 +17285,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17347,13 +17347,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17409,13 +17409,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17471,13 +17471,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17594,13 +17594,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17682,13 +17682,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17766,13 +17766,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17843,13 +17843,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17918,13 +17918,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18010,13 +18010,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18075,13 +18075,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18149,13 +18149,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18223,13 +18223,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18298,13 +18298,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18387,13 +18387,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18467,13 +18467,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18563,13 +18563,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18640,13 +18640,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18717,13 +18717,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18813,13 +18813,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18903,13 +18903,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18991,13 +18991,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19079,13 +19079,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19156,13 +19156,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19221,13 +19221,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19295,13 +19295,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19371,13 +19371,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19457,13 +19457,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19542,13 +19542,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19625,13 +19625,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19719,13 +19719,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19799,13 +19799,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19888,13 +19888,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19978,13 +19978,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20087,13 +20087,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20186,13 +20186,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20286,13 +20286,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20353,13 +20353,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20432,13 +20432,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20509,13 +20509,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20583,13 +20583,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20660,13 +20660,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20738,13 +20738,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20809,13 +20809,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20882,13 +20882,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20964,13 +20964,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21046,13 +21046,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21167,13 +21167,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21249,13 +21249,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21328,13 +21328,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21458,13 +21458,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21695,13 +21695,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21786,13 +21786,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21901,13 +21901,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22032,13 +22032,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22100,13 +22100,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22166,13 +22166,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22244,13 +22244,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22322,13 +22322,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22399,13 +22399,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22470,13 +22470,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22541,13 +22541,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22618,13 +22618,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22704,13 +22704,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22796,13 +22796,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22885,13 +22885,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22971,13 +22971,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23058,13 +23058,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23132,13 +23132,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23210,13 +23210,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23290,13 +23290,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23368,13 +23368,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23454,13 +23454,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23525,13 +23525,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23600,13 +23600,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23675,13 +23675,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23747,13 +23747,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23833,13 +23833,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23921,13 +23921,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23989,13 +23989,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24066,13 +24066,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24134,13 +24134,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24208,13 +24208,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24285,13 +24285,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24365,13 +24365,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24454,13 +24454,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24558,13 +24558,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24638,13 +24638,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24724,13 +24724,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24810,13 +24810,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24888,13 +24888,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24986,13 +24986,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25066,13 +25066,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25153,13 +25153,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25234,13 +25234,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25330,13 +25330,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25392,13 +25392,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25466,13 +25466,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25525,13 +25525,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25587,13 +25587,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25663,13 +25663,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25737,13 +25737,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25826,13 +25826,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25903,13 +25903,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25994,13 +25994,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26079,13 +26079,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26159,13 +26159,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26230,13 +26230,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -26299,13 +26299,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26379,13 +26379,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26454,13 +26454,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26529,13 +26529,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26607,13 +26607,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26683,13 +26683,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26773,13 +26773,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26860,13 +26860,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26961,13 +26961,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27056,13 +27056,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27146,13 +27146,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27219,13 +27219,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27305,13 +27305,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27415,13 +27415,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27501,13 +27501,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27569,13 +27569,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27654,13 +27654,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27734,13 +27734,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27811,13 +27811,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27888,13 +27888,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27965,13 +27965,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28040,13 +28040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28129,13 +28129,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28282,13 +28282,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28347,13 +28347,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28430,13 +28430,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28506,13 +28506,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28574,13 +28574,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28636,13 +28636,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28710,13 +28710,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28781,13 +28781,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28855,13 +28855,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28926,13 +28926,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28998,13 +28998,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29084,13 +29084,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29164,13 +29164,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29249,13 +29249,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29329,13 +29329,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29397,13 +29397,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29474,13 +29474,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29555,13 +29555,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29639,13 +29639,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29720,13 +29720,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29804,13 +29804,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29886,13 +29886,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29982,13 +29982,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30075,13 +30075,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30174,13 +30174,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30267,13 +30267,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30344,13 +30344,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30424,13 +30424,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30515,13 +30515,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30588,13 +30588,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30660,13 +30660,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30734,13 +30734,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 5842dca6fe..36d31b8f1f 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 @@ -29078,16 +29078,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -29121,16 +29121,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -29165,16 +29165,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -29209,16 +29209,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -29251,16 +29251,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -29298,16 +29298,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -29353,16 +29353,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -29407,16 +29407,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -29468,21 +29468,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -29518,16 +29518,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -29570,21 +29570,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: Atlas CLI @@ -29628,16 +29628,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -29683,16 +29683,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -29745,21 +29745,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: Atlas CLI @@ -29818,16 +29818,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -29873,16 +29873,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -29936,21 +29936,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: Atlas CLI @@ -29986,16 +29986,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -30032,16 +30032,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -30095,21 +30095,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: Atlas CLI @@ -30143,16 +30143,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -30186,16 +30186,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -30240,21 +30240,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: Atlas CLI @@ -30298,21 +30298,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: Atlas CLI @@ -30350,16 +30350,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -30410,21 +30410,21 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -30474,16 +30474,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -30530,16 +30530,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -30586,16 +30586,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -30634,16 +30634,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -30687,21 +30687,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: Atlas CLI @@ -30746,16 +30746,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -30802,16 +30802,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -30867,21 +30867,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -30938,21 +30938,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -31002,16 +31002,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -31061,16 +31061,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -31117,16 +31117,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -31182,21 +31182,21 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: Atlas CLI @@ -31246,16 +31246,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -31294,16 +31294,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -31342,21 +31342,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -31402,16 +31402,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -31464,21 +31464,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -31527,21 +31527,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -31573,16 +31573,16 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -31623,21 +31623,21 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: Atlas CLI @@ -31669,16 +31669,16 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -31717,21 +31717,21 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: Atlas CLI @@ -31767,16 +31767,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -31823,21 +31823,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: Atlas CLI @@ -31883,16 +31883,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -31936,16 +31936,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -31981,16 +31981,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -32040,21 +32040,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: Atlas CLI @@ -32086,16 +32086,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -32137,21 +32137,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: Atlas CLI @@ -32200,16 +32200,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -32251,16 +32251,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -32315,21 +32315,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: Atlas CLI @@ -32371,16 +32371,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -32429,21 +32429,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: Atlas CLI @@ -32494,16 +32494,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -32549,16 +32549,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -32614,21 +32614,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: Atlas CLI @@ -32673,16 +32673,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -32735,21 +32735,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: Atlas CLI @@ -32795,16 +32795,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -32849,16 +32849,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -32915,21 +32915,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -32981,16 +32981,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -33040,16 +33040,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -33093,16 +33093,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -33145,16 +33145,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -33209,21 +33209,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: Atlas CLI @@ -33270,16 +33270,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -33332,21 +33332,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: Atlas CLI @@ -33398,16 +33398,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -33459,16 +33459,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -33527,21 +33527,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -33591,16 +33591,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -33652,16 +33652,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -33705,16 +33705,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -33771,21 +33771,21 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: Atlas CLI @@ -33839,21 +33839,21 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: Atlas CLI @@ -33896,16 +33896,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -33958,16 +33958,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -34011,16 +34011,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -34073,16 +34073,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -34128,16 +34128,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -34193,16 +34193,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -34259,21 +34259,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: Atlas CLI @@ -34333,16 +34333,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -34400,16 +34400,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -34464,16 +34464,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -34539,21 +34539,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: Atlas CLI @@ -34599,16 +34599,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -34655,16 +34655,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -34719,21 +34719,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: Atlas CLI @@ -34791,16 +34791,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -34857,21 +34857,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: Atlas CLI @@ -34988,21 +34988,21 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: Atlas CLI @@ -35049,16 +35049,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -35115,21 +35115,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: Atlas CLI @@ -35184,16 +35184,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -35250,16 +35250,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -35325,21 +35325,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: Atlas CLI @@ -35410,16 +35410,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -35468,16 +35468,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -35525,16 +35525,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -35587,21 +35587,21 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: Atlas CLI @@ -35648,16 +35648,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -35715,21 +35715,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: Atlas CLI @@ -35769,21 +35769,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: Atlas CLI @@ -35841,16 +35841,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -35901,21 +35901,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -35971,16 +35971,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -36025,16 +36025,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -36079,16 +36079,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -36142,21 +36142,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -36209,21 +36209,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -36269,16 +36269,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -36330,21 +36330,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: Atlas CLI @@ -36399,16 +36399,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -36462,16 +36462,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -36522,16 +36522,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -36589,21 +36589,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -36644,16 +36644,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -36730,16 +36730,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -36787,16 +36787,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -36844,21 +36844,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: Atlas CLI @@ -36905,21 +36905,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: Atlas CLI @@ -36967,16 +36967,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -37023,21 +37023,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: Atlas CLI @@ -37085,16 +37085,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -37136,16 +37136,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -37202,21 +37202,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: Atlas CLI @@ -37251,16 +37251,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -37295,16 +37295,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -37351,21 +37351,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: Atlas CLI @@ -37407,16 +37407,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -37456,16 +37456,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -37518,21 +37518,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: Atlas CLI @@ -37575,16 +37575,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -37629,21 +37629,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: Atlas CLI @@ -37681,16 +37681,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -37731,16 +37731,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -37793,21 +37793,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -37849,16 +37849,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -37915,16 +37915,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -37981,16 +37981,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -38057,21 +38057,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -38133,16 +38133,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -38178,16 +38178,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -38325,21 +38325,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: Atlas CLI @@ -38401,16 +38401,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -38470,16 +38470,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -38552,21 +38552,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: Atlas CLI @@ -38609,16 +38609,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -38680,21 +38680,21 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: Atlas CLI @@ -38772,16 +38772,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -38857,16 +38857,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -38902,16 +38902,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -38968,21 +38968,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: Atlas CLI @@ -39022,16 +39022,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -39078,21 +39078,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: Atlas CLI @@ -39148,16 +39148,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -39206,16 +39206,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -39305,16 +39305,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -39367,16 +39367,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -39411,16 +39411,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -39485,16 +39485,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -39558,16 +39558,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -39630,16 +39630,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -39679,16 +39679,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -39743,16 +39743,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -39806,16 +39806,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -39881,21 +39881,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -39958,21 +39958,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -40013,16 +40013,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -40067,21 +40067,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -40121,21 +40121,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -40177,16 +40177,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -40231,16 +40231,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -40293,21 +40293,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -40342,16 +40342,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -40392,16 +40392,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -40474,16 +40474,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -40557,16 +40557,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -40650,21 +40650,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -40719,21 +40719,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: Atlas CLI @@ -40771,16 +40771,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -40818,21 +40818,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: Atlas CLI @@ -40880,21 +40880,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: Atlas CLI @@ -40942,16 +40942,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -40983,16 +40983,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -41024,16 +41024,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -41073,21 +41073,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: Atlas CLI @@ -41118,21 +41118,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: Atlas CLI @@ -41163,21 +41163,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: Atlas CLI @@ -41209,16 +41209,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -41251,16 +41251,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -41293,21 +41293,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: Atlas CLI @@ -41380,16 +41380,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -41437,16 +41437,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -41494,21 +41494,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: Atlas CLI @@ -41551,16 +41551,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -41603,16 +41603,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -41666,21 +41666,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: Atlas CLI @@ -41715,16 +41715,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -41766,21 +41766,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: Atlas CLI @@ -41822,16 +41822,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -41874,16 +41874,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -41936,21 +41936,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: Atlas CLI @@ -41995,16 +41995,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -42058,16 +42058,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -42111,21 +42111,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: Atlas CLI @@ -42168,21 +42168,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: Atlas CLI @@ -42235,16 +42235,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -42298,16 +42298,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -42360,16 +42360,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -42420,21 +42420,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: Atlas CLI @@ -42479,16 +42479,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -42541,16 +42541,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -42604,16 +42604,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -42679,21 +42679,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -42752,16 +42752,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -42822,16 +42822,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -42874,21 +42874,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: Atlas CLI @@ -42922,16 +42922,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -42972,21 +42972,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: Atlas CLI @@ -43029,16 +43029,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -43092,21 +43092,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -43156,16 +43156,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -43215,16 +43215,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -43281,21 +43281,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: Atlas CLI @@ -43331,16 +43331,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -43385,21 +43385,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: Atlas CLI @@ -43438,16 +43438,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -43507,21 +43507,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: Atlas CLI @@ -43564,16 +43564,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -43618,16 +43618,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -43663,16 +43663,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -43713,16 +43713,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -43766,16 +43766,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -43822,16 +43822,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -43904,16 +43904,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -43957,16 +43957,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -44012,16 +44012,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -44110,16 +44110,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -44319,16 +44319,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -44389,16 +44389,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -44476,16 +44476,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -44570,16 +44570,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -44616,16 +44616,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -44661,16 +44661,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -44714,21 +44714,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -44771,21 +44771,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -44829,21 +44829,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: Atlas CLI @@ -44883,16 +44883,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -44928,16 +44928,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -44980,21 +44980,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: Atlas CLI @@ -45040,16 +45040,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -45103,21 +45103,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -45169,16 +45169,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -45225,16 +45225,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -45287,16 +45287,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -45338,16 +45338,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -45393,21 +45393,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: Atlas CLI @@ -45452,16 +45452,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -45506,16 +45506,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -45565,21 +45565,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: Atlas CLI @@ -45615,16 +45615,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" @@ -45666,21 +45666,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - label: Atlas CLI @@ -45721,16 +45721,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" @@ -45770,16 +45770,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -45828,21 +45828,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -45892,21 +45892,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -45942,16 +45942,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -45994,21 +45994,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: Atlas CLI @@ -46042,16 +46042,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -46092,21 +46092,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: Atlas CLI @@ -46148,16 +46148,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -46203,16 +46203,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -46263,21 +46263,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -46340,16 +46340,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -46392,16 +46392,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -46450,21 +46450,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: Atlas CLI @@ -46512,16 +46512,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -46566,16 +46566,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -46632,21 +46632,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: Atlas CLI @@ -46687,16 +46687,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -46746,21 +46746,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: Atlas CLI @@ -46807,16 +46807,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -46873,21 +46873,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -46919,16 +46919,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -46972,21 +46972,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: Atlas CLI @@ -47020,16 +47020,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -47062,16 +47062,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -47113,21 +47113,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: Atlas CLI @@ -47168,16 +47168,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -47225,16 +47225,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -47278,16 +47278,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -47340,21 +47340,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -47399,16 +47399,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -47454,16 +47454,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -47509,21 +47509,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: Atlas CLI @@ -47567,16 +47567,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -47614,16 +47614,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -47668,21 +47668,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -47720,16 +47720,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -47771,21 +47771,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -47829,16 +47829,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -47882,16 +47882,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -47944,21 +47944,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -48005,16 +48005,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -48071,21 +48071,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -48141,16 +48141,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -48204,16 +48204,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -48254,21 +48254,21 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: Atlas CLI @@ -48318,16 +48318,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -48395,16 +48395,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -48457,16 +48457,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -48503,16 +48503,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -48565,16 +48565,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -48619,16 +48619,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -48671,21 +48671,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -48727,21 +48727,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -48783,16 +48783,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -48836,16 +48836,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -48897,21 +48897,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -49007,16 +49007,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -49066,16 +49066,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -49126,16 +49126,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -49170,16 +49170,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -49216,16 +49216,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -49259,16 +49259,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -49309,21 +49309,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: Atlas CLI @@ -49359,16 +49359,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" @@ -49409,21 +49409,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - label: Atlas CLI @@ -49461,16 +49461,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" @@ -49510,16 +49510,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -49568,21 +49568,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -49624,16 +49624,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" @@ -49681,21 +49681,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - label: Atlas CLI @@ -49739,16 +49739,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" @@ -49785,16 +49785,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -49837,21 +49837,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: Atlas CLI @@ -49893,16 +49893,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -49950,21 +49950,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: Atlas CLI @@ -50012,16 +50012,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -50069,16 +50069,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -50135,21 +50135,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -50201,16 +50201,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -50269,21 +50269,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: Atlas CLI @@ -50338,16 +50338,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -50393,16 +50393,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -50442,16 +50442,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -50498,16 +50498,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -50560,21 +50560,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -50619,21 +50619,21 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: Atlas CLI @@ -50675,16 +50675,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -50725,16 +50725,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 b902977870..3652297fdf 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 @@ -250,13 +250,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -312,13 +312,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -380,13 +380,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -448,13 +448,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -507,13 +507,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -578,13 +578,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -656,13 +656,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -732,13 +732,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -819,13 +819,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -887,13 +887,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -964,13 +964,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1042,13 +1042,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1121,13 +1121,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1211,13 +1211,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1314,13 +1314,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1391,13 +1391,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1463,13 +1463,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1539,13 +1539,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1623,13 +1623,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1695,13 +1695,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1760,13 +1760,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1831,13 +1831,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1922,13 +1922,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2001,13 +2001,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2066,13 +2066,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -2129,13 +2129,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2209,13 +2209,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2290,13 +2290,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2365,13 +2365,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2458,13 +2458,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2538,13 +2538,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2619,13 +2619,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2701,13 +2701,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2772,13 +2772,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2846,13 +2846,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2921,13 +2921,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2997,13 +2997,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3084,13 +3084,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3174,13 +3174,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3261,13 +3261,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3348,13 +3348,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3425,13 +3425,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3515,13 +3515,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3602,13 +3602,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3677,13 +3677,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3748,13 +3748,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3829,13 +3829,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3924,13 +3924,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4010,13 +4010,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4072,13 +4072,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4146,13 +4146,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4208,13 +4208,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4279,13 +4279,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4351,13 +4351,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4432,13 +4432,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4511,13 +4511,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4585,13 +4585,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4651,13 +4651,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4738,13 +4738,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4800,13 +4800,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4875,13 +4875,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4961,13 +4961,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5035,13 +5035,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5128,13 +5128,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5209,13 +5209,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5294,13 +5294,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5385,13 +5385,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5470,13 +5470,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5555,13 +5555,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5643,13 +5643,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5722,13 +5722,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5816,13 +5816,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5900,13 +5900,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5989,13 +5989,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6069,13 +6069,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6152,13 +6152,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6244,13 +6244,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6333,13 +6333,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6417,13 +6417,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6492,13 +6492,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6566,13 +6566,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6654,13 +6654,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6741,13 +6741,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6827,13 +6827,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6913,13 +6913,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7000,13 +7000,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7077,13 +7077,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7166,13 +7166,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7253,13 +7253,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7351,13 +7351,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7448,13 +7448,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7542,13 +7542,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7619,13 +7619,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7708,13 +7708,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7785,13 +7785,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7874,13 +7874,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7958,13 +7958,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8051,13 +8051,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8128,13 +8128,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8225,13 +8225,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8322,13 +8322,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8410,13 +8410,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8506,13 +8506,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8607,13 +8607,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8702,13 +8702,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8792,13 +8792,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8899,13 +8899,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8979,13 +8979,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9059,13 +9059,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9151,13 +9151,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9250,13 +9250,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9345,13 +9345,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9526,13 +9526,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9613,13 +9613,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9709,13 +9709,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9823,13 +9823,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9916,13 +9916,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -10010,13 +10010,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10118,13 +10118,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10202,13 +10202,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10284,13 +10284,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10374,13 +10374,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10456,13 +10456,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10552,13 +10552,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10624,13 +10624,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10722,13 +10722,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10809,13 +10809,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10899,13 +10899,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10977,13 +10977,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11054,13 +11054,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11145,13 +11145,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11236,13 +11236,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11312,13 +11312,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11396,13 +11396,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11494,13 +11494,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11584,13 +11584,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11669,13 +11669,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11765,13 +11765,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11839,13 +11839,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11933,13 +11933,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12080,13 +12080,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12202,13 +12202,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12267,13 +12267,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12356,13 +12356,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12439,13 +12439,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12510,13 +12510,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12594,13 +12594,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12667,13 +12667,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12763,13 +12763,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12828,13 +12828,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12911,13 +12911,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12988,13 +12988,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13060,13 +13060,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13152,13 +13152,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13230,13 +13230,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13310,13 +13310,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13381,13 +13381,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13453,13 +13453,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13545,13 +13545,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13622,13 +13622,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13705,13 +13705,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13789,13 +13789,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13887,13 +13887,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13988,13 +13988,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14059,13 +14059,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14294,13 +14294,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14381,13 +14381,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14463,13 +14463,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14565,13 +14565,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14648,13 +14648,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14745,13 +14745,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14873,13 +14873,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14998,13 +14998,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15060,13 +15060,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15140,13 +15140,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15214,13 +15214,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15297,13 +15297,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15394,13 +15394,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15478,13 +15478,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15616,13 +15616,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15702,13 +15702,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15767,13 +15767,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15878,13 +15878,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15992,13 +15992,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16098,13 +16098,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16175,13 +16175,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16265,13 +16265,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16353,13 +16353,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16464,13 +16464,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16572,13 +16572,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16647,13 +16647,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16726,13 +16726,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16799,13 +16799,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16872,13 +16872,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16949,13 +16949,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17037,13 +17037,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17103,13 +17103,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17177,13 +17177,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17269,13 +17269,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17362,13 +17362,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17466,13 +17466,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17551,13 +17551,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17637,13 +17637,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17719,13 +17719,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17790,13 +17790,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17861,13 +17861,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17920,13 +17920,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17980,13 +17980,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18051,13 +18051,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18110,13 +18110,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18169,13 +18169,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18231,13 +18231,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18293,13 +18293,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18355,13 +18355,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18478,13 +18478,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18566,13 +18566,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18650,13 +18650,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18727,13 +18727,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18802,13 +18802,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18894,13 +18894,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18959,13 +18959,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19033,13 +19033,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19107,13 +19107,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19182,13 +19182,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19271,13 +19271,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19351,13 +19351,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19447,13 +19447,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19524,13 +19524,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19601,13 +19601,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19697,13 +19697,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19787,13 +19787,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19875,13 +19875,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19963,13 +19963,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20040,13 +20040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20105,13 +20105,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20179,13 +20179,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20255,13 +20255,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20341,13 +20341,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20426,13 +20426,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20509,13 +20509,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20603,13 +20603,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20683,13 +20683,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20772,13 +20772,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20862,13 +20862,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20971,13 +20971,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21070,13 +21070,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21170,13 +21170,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21237,13 +21237,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21316,13 +21316,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21393,13 +21393,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21467,13 +21467,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21544,13 +21544,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21622,13 +21622,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21693,13 +21693,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21766,13 +21766,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21837,13 +21837,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21919,13 +21919,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22001,13 +22001,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22122,13 +22122,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22204,13 +22204,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22283,13 +22283,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22413,13 +22413,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22650,13 +22650,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22741,13 +22741,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22856,13 +22856,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22987,13 +22987,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23109,13 +23109,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23177,13 +23177,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23243,13 +23243,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23321,13 +23321,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23399,13 +23399,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23476,13 +23476,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23547,13 +23547,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23618,13 +23618,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23695,13 +23695,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23781,13 +23781,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23873,13 +23873,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23962,13 +23962,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24048,13 +24048,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24135,13 +24135,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24209,13 +24209,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24287,13 +24287,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24367,13 +24367,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24445,13 +24445,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24531,13 +24531,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24602,13 +24602,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24677,13 +24677,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24752,13 +24752,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24824,13 +24824,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24910,13 +24910,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24998,13 +24998,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25066,13 +25066,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25143,13 +25143,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25211,13 +25211,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25285,13 +25285,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25362,13 +25362,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25442,13 +25442,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25531,13 +25531,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25635,13 +25635,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25715,13 +25715,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25801,13 +25801,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25887,13 +25887,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25965,13 +25965,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26063,13 +26063,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26143,13 +26143,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26230,13 +26230,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26311,13 +26311,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26407,13 +26407,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26469,13 +26469,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26543,13 +26543,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26602,13 +26602,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26664,13 +26664,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26740,13 +26740,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26814,13 +26814,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26903,13 +26903,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26980,13 +26980,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27071,13 +27071,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27156,13 +27156,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27236,13 +27236,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27307,13 +27307,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -27376,13 +27376,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27456,13 +27456,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27531,13 +27531,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27606,13 +27606,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27684,13 +27684,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27760,13 +27760,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27850,13 +27850,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27937,13 +27937,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28038,13 +28038,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28133,13 +28133,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28223,13 +28223,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28296,13 +28296,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28382,13 +28382,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28492,13 +28492,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28578,13 +28578,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28646,13 +28646,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28731,13 +28731,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28811,13 +28811,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28888,13 +28888,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28965,13 +28965,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29042,13 +29042,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29117,13 +29117,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29206,13 +29206,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29359,13 +29359,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29424,13 +29424,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29507,13 +29507,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29583,13 +29583,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29651,13 +29651,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29713,13 +29713,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29787,13 +29787,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29858,13 +29858,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29932,13 +29932,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30003,13 +30003,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30075,13 +30075,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30161,13 +30161,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30241,13 +30241,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30326,13 +30326,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30406,13 +30406,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30474,13 +30474,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30551,13 +30551,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30632,13 +30632,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30716,13 +30716,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30797,13 +30797,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30881,13 +30881,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30963,13 +30963,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31059,13 +31059,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31152,13 +31152,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31251,13 +31251,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31344,13 +31344,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -31421,13 +31421,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31501,13 +31501,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -31592,13 +31592,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31640,13 +31640,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31713,13 +31713,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31785,13 +31785,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31859,13 +31859,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 44ba614f7f..84b8cee392 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 @@ -29599,16 +29599,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -29642,16 +29642,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -29686,16 +29686,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -29730,16 +29730,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -29772,16 +29772,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -29819,16 +29819,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -29874,16 +29874,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -29928,16 +29928,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -29989,21 +29989,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -30039,16 +30039,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -30091,21 +30091,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: Atlas CLI @@ -30149,16 +30149,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -30204,16 +30204,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -30266,21 +30266,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: Atlas CLI @@ -30339,16 +30339,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -30395,21 +30395,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - label: Atlas CLI @@ -30449,16 +30449,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" @@ -30502,16 +30502,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -30563,21 +30563,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: Atlas CLI @@ -30617,16 +30617,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" @@ -30662,16 +30662,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -30708,16 +30708,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -30771,21 +30771,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: Atlas CLI @@ -30819,16 +30819,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -30862,16 +30862,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -30916,21 +30916,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: Atlas CLI @@ -30974,21 +30974,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: Atlas CLI @@ -31026,16 +31026,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -31086,21 +31086,21 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -31150,16 +31150,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -31206,16 +31206,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -31262,16 +31262,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -31310,16 +31310,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -31363,21 +31363,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: Atlas CLI @@ -31422,16 +31422,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -31478,16 +31478,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -31543,21 +31543,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -31614,21 +31614,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -31678,16 +31678,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -31737,16 +31737,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -31793,16 +31793,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -31858,21 +31858,21 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: Atlas CLI @@ -31922,16 +31922,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -31970,16 +31970,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -32018,21 +32018,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -32078,16 +32078,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -32140,21 +32140,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -32203,21 +32203,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -32249,16 +32249,16 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -32299,21 +32299,21 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: Atlas CLI @@ -32345,16 +32345,16 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -32393,21 +32393,21 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: Atlas CLI @@ -32443,16 +32443,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -32499,21 +32499,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: Atlas CLI @@ -32559,16 +32559,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -32612,16 +32612,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -32657,16 +32657,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -32716,21 +32716,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: Atlas CLI @@ -32762,16 +32762,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -32813,21 +32813,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: Atlas CLI @@ -32876,16 +32876,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -32927,16 +32927,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -32991,21 +32991,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: Atlas CLI @@ -33047,16 +33047,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -33105,21 +33105,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: Atlas CLI @@ -33170,16 +33170,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -33225,16 +33225,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -33290,21 +33290,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: Atlas CLI @@ -33400,16 +33400,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -33463,16 +33463,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" @@ -33517,16 +33517,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -33579,21 +33579,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: Atlas CLI @@ -33639,16 +33639,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -33693,16 +33693,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -33759,21 +33759,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -33825,16 +33825,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -33884,16 +33884,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -33937,16 +33937,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -33989,16 +33989,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -34053,21 +34053,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: Atlas CLI @@ -34114,16 +34114,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -34176,21 +34176,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: Atlas CLI @@ -34242,16 +34242,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -34303,16 +34303,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -34371,21 +34371,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -34435,16 +34435,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -34496,16 +34496,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -34549,16 +34549,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -34615,21 +34615,21 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: Atlas CLI @@ -34683,21 +34683,21 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: Atlas CLI @@ -34740,16 +34740,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -34802,16 +34802,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -34855,16 +34855,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -34917,16 +34917,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -34972,16 +34972,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -35037,16 +35037,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -35091,16 +35091,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" @@ -35158,21 +35158,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: Atlas CLI @@ -35229,21 +35229,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: Atlas CLI @@ -35294,21 +35294,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - label: Atlas CLI @@ -35364,21 +35364,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: Atlas CLI @@ -35438,16 +35438,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -35505,16 +35505,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -35569,16 +35569,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -35644,21 +35644,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: Atlas CLI @@ -35704,16 +35704,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -35760,16 +35760,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -35824,21 +35824,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: Atlas CLI @@ -35896,16 +35896,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -35962,21 +35962,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: Atlas CLI @@ -36093,21 +36093,21 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: Atlas CLI @@ -36154,16 +36154,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -36220,21 +36220,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: Atlas CLI @@ -36289,16 +36289,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -36355,16 +36355,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -36430,21 +36430,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: Atlas CLI @@ -36515,16 +36515,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -36573,16 +36573,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -36630,16 +36630,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -36692,21 +36692,21 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: Atlas CLI @@ -36753,16 +36753,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -36820,21 +36820,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: Atlas CLI @@ -36874,21 +36874,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: Atlas CLI @@ -36946,16 +36946,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -37006,21 +37006,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -37076,16 +37076,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -37130,16 +37130,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -37184,16 +37184,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -37247,21 +37247,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -37314,21 +37314,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -37374,16 +37374,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -37435,21 +37435,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: Atlas CLI @@ -37504,16 +37504,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -37567,16 +37567,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -37627,16 +37627,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -37694,21 +37694,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -37749,16 +37749,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -37835,16 +37835,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -37892,16 +37892,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -37949,21 +37949,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: Atlas CLI @@ -38010,21 +38010,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: Atlas CLI @@ -38059,16 +38059,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" @@ -38117,16 +38117,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -38173,21 +38173,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: Atlas CLI @@ -38235,16 +38235,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -38286,16 +38286,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -38352,21 +38352,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: Atlas CLI @@ -38401,16 +38401,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -38445,16 +38445,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -38501,21 +38501,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: Atlas CLI @@ -38557,16 +38557,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -38606,16 +38606,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -38668,21 +38668,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: Atlas CLI @@ -38725,16 +38725,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -38779,21 +38779,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: Atlas CLI @@ -38831,16 +38831,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -38881,16 +38881,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -38943,21 +38943,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -38999,16 +38999,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -39065,16 +39065,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -39131,16 +39131,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -39207,21 +39207,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -39283,16 +39283,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -39328,16 +39328,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -39475,21 +39475,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: Atlas CLI @@ -39551,16 +39551,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -39620,16 +39620,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -39702,21 +39702,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: Atlas CLI @@ -39759,16 +39759,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -39830,21 +39830,21 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: Atlas CLI @@ -39922,16 +39922,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -40007,16 +40007,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -40052,16 +40052,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -40118,21 +40118,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: Atlas CLI @@ -40172,16 +40172,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -40228,21 +40228,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: Atlas CLI @@ -40298,16 +40298,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -40356,16 +40356,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -40455,16 +40455,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -40517,16 +40517,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -40561,16 +40561,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -40635,16 +40635,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -40708,16 +40708,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -40780,16 +40780,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -40829,16 +40829,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -40893,16 +40893,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -40956,16 +40956,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -41031,21 +41031,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -41108,21 +41108,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -41163,16 +41163,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -41217,21 +41217,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -41271,21 +41271,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -41327,16 +41327,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -41381,16 +41381,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -41443,21 +41443,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -41492,16 +41492,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -41542,16 +41542,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -41624,16 +41624,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -41707,16 +41707,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -41800,21 +41800,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -41869,21 +41869,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: Atlas CLI @@ -41921,16 +41921,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -41968,21 +41968,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: Atlas CLI @@ -42030,21 +42030,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: Atlas CLI @@ -42092,16 +42092,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -42133,16 +42133,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -42174,16 +42174,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -42223,21 +42223,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: Atlas CLI @@ -42268,21 +42268,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: Atlas CLI @@ -42313,21 +42313,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: Atlas CLI @@ -42359,16 +42359,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -42401,16 +42401,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -42443,21 +42443,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: Atlas CLI @@ -42530,16 +42530,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -42587,16 +42587,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -42644,21 +42644,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: Atlas CLI @@ -42701,16 +42701,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -42753,16 +42753,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -42816,21 +42816,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: Atlas CLI @@ -42865,16 +42865,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -42916,21 +42916,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: Atlas CLI @@ -42972,16 +42972,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -43024,16 +43024,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -43086,21 +43086,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: Atlas CLI @@ -43145,16 +43145,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -43208,16 +43208,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -43261,21 +43261,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: Atlas CLI @@ -43318,21 +43318,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: Atlas CLI @@ -43385,16 +43385,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -43448,16 +43448,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -43510,16 +43510,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -43570,21 +43570,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: Atlas CLI @@ -43629,16 +43629,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -43691,16 +43691,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -43754,16 +43754,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -43829,21 +43829,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -43902,16 +43902,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -43972,16 +43972,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -44024,21 +44024,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: Atlas CLI @@ -44072,16 +44072,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -44122,21 +44122,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: Atlas CLI @@ -44179,16 +44179,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -44242,21 +44242,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -44306,16 +44306,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -44365,16 +44365,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -44431,21 +44431,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: Atlas CLI @@ -44481,16 +44481,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -44535,21 +44535,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: Atlas CLI @@ -44588,16 +44588,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -44657,21 +44657,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: Atlas CLI @@ -44714,16 +44714,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -44768,16 +44768,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -44813,16 +44813,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -44863,16 +44863,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -44948,16 +44948,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -44993,16 +44993,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" @@ -45046,16 +45046,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -45102,16 +45102,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -45184,16 +45184,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -45237,16 +45237,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -45292,16 +45292,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -45390,16 +45390,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -45599,16 +45599,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -45669,16 +45669,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -45756,16 +45756,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -45850,16 +45850,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -45896,16 +45896,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -45941,16 +45941,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -45994,21 +45994,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -46051,21 +46051,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -46109,21 +46109,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: Atlas CLI @@ -46163,16 +46163,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -46208,16 +46208,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -46260,21 +46260,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: Atlas CLI @@ -46320,16 +46320,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -46383,21 +46383,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -46449,16 +46449,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -46505,16 +46505,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -46567,16 +46567,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -46618,16 +46618,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -46673,21 +46673,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: Atlas CLI @@ -46732,16 +46732,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -46786,16 +46786,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -46845,21 +46845,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: Atlas CLI @@ -46895,16 +46895,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" @@ -46946,21 +46946,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - label: Atlas CLI @@ -47001,16 +47001,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" @@ -47050,16 +47050,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -47108,21 +47108,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -47172,21 +47172,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -47222,16 +47222,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -47274,21 +47274,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: Atlas CLI @@ -47322,16 +47322,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -47372,21 +47372,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: Atlas CLI @@ -47428,16 +47428,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -47483,16 +47483,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -47543,21 +47543,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -47620,16 +47620,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -47672,16 +47672,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -47730,21 +47730,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: Atlas CLI @@ -47792,16 +47792,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -47846,16 +47846,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -47912,21 +47912,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: Atlas CLI @@ -47967,16 +47967,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -48026,21 +48026,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: Atlas CLI @@ -48087,16 +48087,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -48153,21 +48153,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -48199,16 +48199,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -48252,21 +48252,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: Atlas CLI @@ -48300,16 +48300,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -48342,16 +48342,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -48393,21 +48393,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: Atlas CLI @@ -48448,16 +48448,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -48505,16 +48505,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -48558,16 +48558,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -48620,21 +48620,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -48679,16 +48679,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -48734,16 +48734,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -48789,21 +48789,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: Atlas CLI @@ -48847,16 +48847,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -48894,16 +48894,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -48948,21 +48948,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -49000,16 +49000,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -49051,21 +49051,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -49109,16 +49109,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -49162,16 +49162,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -49224,21 +49224,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -49285,16 +49285,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -49351,21 +49351,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -49421,16 +49421,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -49484,16 +49484,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -49534,21 +49534,21 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: Atlas CLI @@ -49598,16 +49598,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -49675,16 +49675,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -49737,16 +49737,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -49783,16 +49783,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -49845,16 +49845,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -49899,16 +49899,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -49951,21 +49951,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -50007,21 +50007,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -50063,16 +50063,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -50116,16 +50116,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -50177,21 +50177,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -50287,16 +50287,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -50346,16 +50346,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -50406,16 +50406,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -50450,16 +50450,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -50496,16 +50496,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -50539,16 +50539,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -50589,21 +50589,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: Atlas CLI @@ -50639,16 +50639,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" @@ -50689,21 +50689,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - label: Atlas CLI @@ -50741,16 +50741,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" @@ -50790,16 +50790,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -50848,21 +50848,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -50904,16 +50904,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" @@ -50961,21 +50961,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - label: Atlas CLI @@ -51019,16 +51019,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" @@ -51065,16 +51065,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -51117,21 +51117,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: Atlas CLI @@ -51173,16 +51173,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -51230,21 +51230,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: Atlas CLI @@ -51292,16 +51292,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -51349,16 +51349,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -51415,21 +51415,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -51481,16 +51481,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -51549,21 +51549,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: Atlas CLI @@ -51618,16 +51618,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -51673,16 +51673,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -51722,16 +51722,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -51778,16 +51778,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -51840,21 +51840,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -51880,16 +51880,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" @@ -51935,21 +51935,21 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: Atlas CLI @@ -51991,16 +51991,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -52041,16 +52041,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 4eb878446a..dbd0b0aa1d 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 @@ -250,13 +250,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -312,13 +312,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -380,13 +380,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -448,13 +448,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -507,13 +507,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -578,13 +578,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -656,13 +656,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -732,13 +732,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -819,13 +819,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -887,13 +887,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -964,13 +964,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1042,13 +1042,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1121,13 +1121,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1211,13 +1211,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1314,13 +1314,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1391,13 +1391,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1463,13 +1463,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1539,13 +1539,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1623,13 +1623,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1695,13 +1695,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1760,13 +1760,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1831,13 +1831,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1922,13 +1922,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2001,13 +2001,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2066,13 +2066,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -2129,13 +2129,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2209,13 +2209,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2290,13 +2290,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2365,13 +2365,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2458,13 +2458,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2538,13 +2538,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2619,13 +2619,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2701,13 +2701,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2772,13 +2772,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2846,13 +2846,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2921,13 +2921,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2997,13 +2997,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3084,13 +3084,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3174,13 +3174,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3261,13 +3261,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3348,13 +3348,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3425,13 +3425,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3514,13 +3514,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3600,13 +3600,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3675,13 +3675,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3746,13 +3746,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3827,13 +3827,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3922,13 +3922,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4008,13 +4008,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4070,13 +4070,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4144,13 +4144,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4206,13 +4206,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4277,13 +4277,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4348,13 +4348,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4480,13 +4480,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4558,13 +4558,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4665,13 +4665,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4730,13 +4730,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4817,13 +4817,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4879,13 +4879,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4954,13 +4954,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5040,13 +5040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5114,13 +5114,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5207,13 +5207,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5288,13 +5288,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5373,13 +5373,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5464,13 +5464,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5549,13 +5549,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5634,13 +5634,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5722,13 +5722,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5801,13 +5801,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5895,13 +5895,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5979,13 +5979,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6068,13 +6068,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6148,13 +6148,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6231,13 +6231,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6323,13 +6323,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6412,13 +6412,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6496,13 +6496,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6571,13 +6571,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6645,13 +6645,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6733,13 +6733,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6820,13 +6820,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6906,13 +6906,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6992,13 +6992,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7079,13 +7079,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7156,13 +7156,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7245,13 +7245,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7332,13 +7332,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7430,13 +7430,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7527,13 +7527,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7621,13 +7621,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7698,13 +7698,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7787,13 +7787,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7864,13 +7864,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7953,13 +7953,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8037,13 +8037,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8130,13 +8130,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8207,13 +8207,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8304,13 +8304,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8401,13 +8401,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8489,13 +8489,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8585,13 +8585,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8686,13 +8686,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8781,13 +8781,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8871,13 +8871,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8978,13 +8978,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9058,13 +9058,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9138,13 +9138,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9230,13 +9230,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9329,13 +9329,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9424,13 +9424,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9605,13 +9605,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9692,13 +9692,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9788,13 +9788,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9902,13 +9902,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9995,13 +9995,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -10089,13 +10089,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10197,13 +10197,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10281,13 +10281,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10363,13 +10363,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10453,13 +10453,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10535,13 +10535,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10631,13 +10631,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10703,13 +10703,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10801,13 +10801,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10888,13 +10888,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10978,13 +10978,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11058,13 +11058,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11133,13 +11133,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11222,13 +11222,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11311,13 +11311,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11405,13 +11405,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11498,13 +11498,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11610,13 +11610,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11718,13 +11718,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11824,13 +11824,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11944,13 +11944,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12037,13 +12037,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12138,13 +12138,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12243,13 +12243,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12318,13 +12318,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12402,13 +12402,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12500,13 +12500,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12590,13 +12590,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12675,13 +12675,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12771,13 +12771,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12845,13 +12845,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12939,13 +12939,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13086,13 +13086,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13180,13 +13180,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13266,13 +13266,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13388,13 +13388,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13453,13 +13453,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13542,13 +13542,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13625,13 +13625,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13696,13 +13696,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13780,13 +13780,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13853,13 +13853,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13949,13 +13949,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14014,13 +14014,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14097,13 +14097,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14174,13 +14174,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14246,13 +14246,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14338,13 +14338,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14416,13 +14416,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14496,13 +14496,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14567,13 +14567,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14639,13 +14639,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14731,13 +14731,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14808,13 +14808,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14891,13 +14891,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14975,13 +14975,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15073,13 +15073,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15174,13 +15174,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15245,13 +15245,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15480,13 +15480,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15567,13 +15567,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15649,13 +15649,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15751,13 +15751,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15834,13 +15834,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15931,13 +15931,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16059,13 +16059,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16184,13 +16184,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16246,13 +16246,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16326,13 +16326,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16400,13 +16400,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16483,13 +16483,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16580,13 +16580,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16664,13 +16664,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16802,13 +16802,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16888,13 +16888,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16953,13 +16953,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17064,13 +17064,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17178,13 +17178,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17284,13 +17284,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17361,13 +17361,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17451,13 +17451,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17539,13 +17539,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17650,13 +17650,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17758,13 +17758,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17833,13 +17833,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17912,13 +17912,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17985,13 +17985,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18058,13 +18058,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18135,13 +18135,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18223,13 +18223,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18289,13 +18289,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18363,13 +18363,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18455,13 +18455,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18548,13 +18548,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18652,13 +18652,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18735,13 +18735,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18818,13 +18818,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18899,13 +18899,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18970,13 +18970,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19041,13 +19041,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19100,13 +19100,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19160,13 +19160,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19231,13 +19231,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19290,13 +19290,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19349,13 +19349,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19411,13 +19411,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19473,13 +19473,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19535,13 +19535,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19658,13 +19658,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19746,13 +19746,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19830,13 +19830,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19907,13 +19907,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19982,13 +19982,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20074,13 +20074,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20139,13 +20139,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20213,13 +20213,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20287,13 +20287,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20362,13 +20362,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20451,13 +20451,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20531,13 +20531,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20627,13 +20627,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20704,13 +20704,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20781,13 +20781,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20877,13 +20877,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20967,13 +20967,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21055,13 +21055,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21143,13 +21143,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21220,13 +21220,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21285,13 +21285,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21359,13 +21359,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21435,13 +21435,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21521,13 +21521,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21606,13 +21606,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21689,13 +21689,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21783,13 +21783,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21863,13 +21863,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21952,13 +21952,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22042,13 +22042,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22151,13 +22151,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22250,13 +22250,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22350,13 +22350,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22417,13 +22417,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22496,13 +22496,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22573,13 +22573,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22647,13 +22647,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22724,13 +22724,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22802,13 +22802,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22873,13 +22873,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22946,13 +22946,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23017,13 +23017,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23099,13 +23099,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23181,13 +23181,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23302,13 +23302,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23384,13 +23384,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23463,13 +23463,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23593,13 +23593,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23830,13 +23830,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23921,13 +23921,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24036,13 +24036,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24167,13 +24167,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24289,13 +24289,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24357,13 +24357,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24423,13 +24423,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24501,13 +24501,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24579,13 +24579,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24656,13 +24656,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24727,13 +24727,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24798,13 +24798,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24875,13 +24875,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24961,13 +24961,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25053,13 +25053,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25142,13 +25142,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25228,13 +25228,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25315,13 +25315,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25389,13 +25389,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25467,13 +25467,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25547,13 +25547,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25625,13 +25625,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25711,13 +25711,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25782,13 +25782,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25857,13 +25857,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25932,13 +25932,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26004,13 +26004,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26090,13 +26090,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26178,13 +26178,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26246,13 +26246,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26323,13 +26323,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26391,13 +26391,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26465,13 +26465,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26542,13 +26542,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26622,13 +26622,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26711,13 +26711,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26815,13 +26815,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26895,13 +26895,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26981,13 +26981,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27067,13 +27067,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27145,13 +27145,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27243,13 +27243,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27331,13 +27331,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27414,13 +27414,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27498,13 +27498,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27584,13 +27584,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27670,13 +27670,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27756,13 +27756,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27836,13 +27836,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27923,13 +27923,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28004,13 +28004,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28100,13 +28100,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28162,13 +28162,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28236,13 +28236,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28295,13 +28295,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28357,13 +28357,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28433,13 +28433,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28507,13 +28507,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28596,13 +28596,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28673,13 +28673,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28764,13 +28764,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28834,13 +28834,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28919,13 +28919,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28999,13 +28999,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29070,13 +29070,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -29139,13 +29139,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29219,13 +29219,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29294,13 +29294,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29369,13 +29369,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29447,13 +29447,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29523,13 +29523,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29613,13 +29613,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29700,13 +29700,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29801,13 +29801,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29896,13 +29896,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29986,13 +29986,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30059,13 +30059,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30145,13 +30145,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30255,13 +30255,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30341,13 +30341,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30409,13 +30409,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30494,13 +30494,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30574,13 +30574,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30651,13 +30651,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30728,13 +30728,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30805,13 +30805,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30880,13 +30880,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30969,13 +30969,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31122,13 +31122,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31187,13 +31187,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31270,13 +31270,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31346,13 +31346,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31414,13 +31414,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31476,13 +31476,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31550,13 +31550,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31621,13 +31621,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31695,13 +31695,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31766,13 +31766,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -31838,13 +31838,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31924,13 +31924,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32004,13 +32004,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32089,13 +32089,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32169,13 +32169,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32237,13 +32237,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32314,13 +32314,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32395,13 +32395,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32479,13 +32479,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32560,13 +32560,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32644,13 +32644,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32726,13 +32726,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32822,13 +32822,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32915,13 +32915,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33014,13 +33014,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33107,13 +33107,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33184,13 +33184,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33264,13 +33264,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33355,13 +33355,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33403,13 +33403,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33476,13 +33476,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33548,13 +33548,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33622,13 +33622,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 7444c9470c..95f371b5d5 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 @@ -29866,16 +29866,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -29909,16 +29909,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -29953,16 +29953,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -29997,16 +29997,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -30039,16 +30039,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -30086,16 +30086,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -30141,16 +30141,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -30195,16 +30195,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -30256,21 +30256,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -30306,16 +30306,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -30358,21 +30358,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: Atlas CLI @@ -30416,16 +30416,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -30471,16 +30471,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -30533,21 +30533,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: Atlas CLI @@ -30606,16 +30606,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -30662,21 +30662,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - label: Atlas CLI @@ -30716,16 +30716,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" @@ -30769,16 +30769,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -30830,21 +30830,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: Atlas CLI @@ -30884,16 +30884,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" @@ -30929,16 +30929,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -30975,16 +30975,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -31038,21 +31038,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: Atlas CLI @@ -31086,16 +31086,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -31129,16 +31129,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -31183,21 +31183,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: Atlas CLI @@ -31241,21 +31241,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: Atlas CLI @@ -31293,16 +31293,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -31353,21 +31353,21 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -31417,16 +31417,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -31473,16 +31473,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -31529,16 +31529,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -31577,16 +31577,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -31630,21 +31630,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: Atlas CLI @@ -31689,16 +31689,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -31745,16 +31745,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -31810,21 +31810,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -31881,21 +31881,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -31945,16 +31945,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -32004,16 +32004,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -32060,16 +32060,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -32124,21 +32124,21 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: Atlas CLI @@ -32187,16 +32187,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -32235,16 +32235,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -32283,21 +32283,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -32343,16 +32343,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -32405,21 +32405,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -32468,21 +32468,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -32514,16 +32514,16 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -32564,21 +32564,21 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: Atlas CLI @@ -32610,16 +32610,16 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -32658,21 +32658,21 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: Atlas CLI @@ -32707,16 +32707,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -32798,21 +32798,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: Atlas CLI @@ -32857,16 +32857,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -32932,16 +32932,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -32976,16 +32976,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -33035,21 +33035,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: Atlas CLI @@ -33081,16 +33081,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -33132,21 +33132,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: Atlas CLI @@ -33195,16 +33195,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -33246,16 +33246,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -33310,21 +33310,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: Atlas CLI @@ -33366,16 +33366,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -33424,21 +33424,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: Atlas CLI @@ -33489,16 +33489,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -33544,16 +33544,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -33609,21 +33609,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: Atlas CLI @@ -33719,16 +33719,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -33782,16 +33782,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" @@ -33836,16 +33836,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -33898,21 +33898,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: Atlas CLI @@ -33958,16 +33958,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -34012,16 +34012,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -34078,21 +34078,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -34144,16 +34144,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -34203,16 +34203,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -34256,16 +34256,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -34308,16 +34308,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -34372,21 +34372,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: Atlas CLI @@ -34433,16 +34433,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -34495,21 +34495,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: Atlas CLI @@ -34561,16 +34561,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -34622,16 +34622,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -34690,21 +34690,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -34754,16 +34754,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -34815,16 +34815,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -34868,16 +34868,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -34934,21 +34934,21 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: Atlas CLI @@ -35002,21 +35002,21 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: Atlas CLI @@ -35059,16 +35059,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -35121,16 +35121,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -35174,16 +35174,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -35236,16 +35236,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -35291,16 +35291,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -35356,16 +35356,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -35410,16 +35410,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" @@ -35477,21 +35477,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: Atlas CLI @@ -35548,21 +35548,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: Atlas CLI @@ -35613,21 +35613,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - label: Atlas CLI @@ -35683,21 +35683,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: Atlas CLI @@ -35757,16 +35757,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -35824,16 +35824,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -35888,16 +35888,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -35963,21 +35963,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: Atlas CLI @@ -36023,16 +36023,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -36079,16 +36079,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -36143,21 +36143,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: Atlas CLI @@ -36215,16 +36215,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -36281,21 +36281,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: Atlas CLI @@ -36412,21 +36412,21 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: Atlas CLI @@ -36473,16 +36473,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -36539,21 +36539,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: Atlas CLI @@ -36608,16 +36608,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -36674,16 +36674,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -36749,21 +36749,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: Atlas CLI @@ -36834,16 +36834,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -36892,16 +36892,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -36949,16 +36949,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -37011,21 +37011,21 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: Atlas CLI @@ -37072,16 +37072,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -37139,21 +37139,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: Atlas CLI @@ -37193,21 +37193,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: Atlas CLI @@ -37265,16 +37265,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -37325,21 +37325,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -37395,16 +37395,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -37450,16 +37450,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -37502,16 +37502,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -37563,21 +37563,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -37628,21 +37628,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -37696,16 +37696,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" @@ -37760,21 +37760,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ -d '{ }' - label: Atlas CLI @@ -37840,16 +37840,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" @@ -37914,16 +37914,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" @@ -37987,16 +37987,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" @@ -38069,21 +38069,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ -d '{ }' - label: Atlas CLI @@ -38138,16 +38138,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" @@ -38208,16 +38208,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" @@ -38281,21 +38281,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ -d '{ }' - label: Atlas CLI @@ -38340,16 +38340,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -38401,21 +38401,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: Atlas CLI @@ -38470,16 +38470,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -38533,16 +38533,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -38593,16 +38593,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -38660,21 +38660,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -38715,16 +38715,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -38779,21 +38779,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ -d '{ }' - label: Atlas CLI @@ -38842,21 +38842,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ -d '{ }' - label: Atlas CLI @@ -38932,16 +38932,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -38989,16 +38989,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -39046,21 +39046,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: Atlas CLI @@ -39107,21 +39107,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: Atlas CLI @@ -39156,16 +39156,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" @@ -39214,16 +39214,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -39270,21 +39270,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: Atlas CLI @@ -39332,16 +39332,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -39383,16 +39383,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -39449,21 +39449,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: Atlas CLI @@ -39498,16 +39498,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -39542,16 +39542,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -39598,21 +39598,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: Atlas CLI @@ -39654,16 +39654,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -39703,16 +39703,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -39765,21 +39765,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: Atlas CLI @@ -39822,16 +39822,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -39876,21 +39876,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: Atlas CLI @@ -39928,16 +39928,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -39978,16 +39978,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -40040,21 +40040,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -40096,16 +40096,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -40162,16 +40162,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -40228,16 +40228,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -40304,21 +40304,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -40380,16 +40380,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -40425,16 +40425,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -40572,21 +40572,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: Atlas CLI @@ -40648,16 +40648,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -40717,16 +40717,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -40799,21 +40799,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: Atlas CLI @@ -40856,16 +40856,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -40927,21 +40927,21 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: Atlas CLI @@ -41019,16 +41019,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -41104,16 +41104,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -41149,16 +41149,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -41215,21 +41215,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: Atlas CLI @@ -41269,16 +41269,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -41325,21 +41325,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: Atlas CLI @@ -41395,16 +41395,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -41453,16 +41453,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -41552,16 +41552,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -41614,16 +41614,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -41658,16 +41658,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -41732,16 +41732,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -41805,16 +41805,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -41877,16 +41877,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -41926,16 +41926,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -41990,16 +41990,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -42053,16 +42053,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -42128,21 +42128,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -42205,21 +42205,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -42260,16 +42260,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -42314,21 +42314,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -42368,21 +42368,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -42424,16 +42424,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -42478,16 +42478,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -42540,21 +42540,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -42589,16 +42589,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -42639,16 +42639,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -42721,16 +42721,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -42804,16 +42804,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -42897,21 +42897,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -42964,21 +42964,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: Atlas CLI @@ -43015,16 +43015,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -43062,21 +43062,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: Atlas CLI @@ -43122,21 +43122,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: Atlas CLI @@ -43183,16 +43183,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -43224,16 +43224,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -43265,16 +43265,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -43314,21 +43314,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: Atlas CLI @@ -43359,21 +43359,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: Atlas CLI @@ -43404,21 +43404,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: Atlas CLI @@ -43450,16 +43450,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -43492,16 +43492,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -43534,21 +43534,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: Atlas CLI @@ -43621,16 +43621,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -43678,16 +43678,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -43735,21 +43735,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: Atlas CLI @@ -43792,16 +43792,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -43844,16 +43844,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -43907,21 +43907,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: Atlas CLI @@ -43956,16 +43956,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -44007,21 +44007,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: Atlas CLI @@ -44063,16 +44063,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -44115,16 +44115,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -44177,21 +44177,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: Atlas CLI @@ -44236,16 +44236,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -44299,16 +44299,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -44352,21 +44352,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: Atlas CLI @@ -44409,21 +44409,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: Atlas CLI @@ -44476,16 +44476,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -44539,16 +44539,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -44601,16 +44601,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -44661,21 +44661,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: Atlas CLI @@ -44720,16 +44720,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -44782,16 +44782,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -44845,16 +44845,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -44920,21 +44920,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -44993,16 +44993,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -45063,16 +45063,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -45115,21 +45115,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: Atlas CLI @@ -45163,16 +45163,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -45213,21 +45213,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: Atlas CLI @@ -45270,16 +45270,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -45333,21 +45333,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -45397,16 +45397,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -45456,16 +45456,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -45522,21 +45522,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: Atlas CLI @@ -45572,16 +45572,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -45626,21 +45626,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: Atlas CLI @@ -45679,16 +45679,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -45748,21 +45748,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: Atlas CLI @@ -45805,16 +45805,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -45859,16 +45859,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -45904,16 +45904,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -45954,16 +45954,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -46039,16 +46039,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -46084,16 +46084,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" @@ -46137,16 +46137,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -46193,16 +46193,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -46275,16 +46275,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -46328,16 +46328,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -46383,16 +46383,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -46481,16 +46481,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -46690,16 +46690,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -46760,16 +46760,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -46847,16 +46847,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -46941,16 +46941,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -46987,16 +46987,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -47032,16 +47032,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -47085,21 +47085,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -47142,21 +47142,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -47200,21 +47200,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: Atlas CLI @@ -47254,16 +47254,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -47299,16 +47299,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -47351,21 +47351,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: Atlas CLI @@ -47411,16 +47411,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -47474,21 +47474,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -47540,16 +47540,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -47596,16 +47596,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -47658,16 +47658,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -47709,16 +47709,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -47764,21 +47764,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: Atlas CLI @@ -47823,16 +47823,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -47877,16 +47877,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -47936,21 +47936,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: Atlas CLI @@ -47986,16 +47986,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" @@ -48037,21 +48037,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - label: Atlas CLI @@ -48092,16 +48092,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" @@ -48141,16 +48141,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -48199,21 +48199,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -48263,21 +48263,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -48313,16 +48313,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -48365,21 +48365,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: Atlas CLI @@ -48413,16 +48413,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -48463,21 +48463,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: Atlas CLI @@ -48519,16 +48519,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -48574,16 +48574,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -48634,21 +48634,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -48711,16 +48711,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -48763,16 +48763,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -48821,21 +48821,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: Atlas CLI @@ -48883,16 +48883,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -48937,16 +48937,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -49003,21 +49003,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: Atlas CLI @@ -49066,21 +49066,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ -d '{ }' - label: Atlas CLI @@ -49126,16 +49126,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" @@ -49183,16 +49183,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" @@ -49241,21 +49241,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ -d '{ }' - label: Atlas CLI @@ -49303,21 +49303,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ -d '{ }' - label: Atlas CLI @@ -49362,16 +49362,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" @@ -49413,16 +49413,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -49472,21 +49472,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: Atlas CLI @@ -49533,16 +49533,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -49599,21 +49599,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -49645,16 +49645,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -49698,21 +49698,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: Atlas CLI @@ -49746,16 +49746,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -49788,16 +49788,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -49839,21 +49839,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: Atlas CLI @@ -49894,16 +49894,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -49951,16 +49951,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -50004,16 +50004,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -50066,21 +50066,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -50118,21 +50118,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ -d '{ }' - label: Atlas CLI @@ -50177,16 +50177,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -50232,16 +50232,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -50287,21 +50287,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: Atlas CLI @@ -50345,16 +50345,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -50392,16 +50392,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -50446,21 +50446,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -50498,16 +50498,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -50549,21 +50549,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -50607,16 +50607,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -50660,16 +50660,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -50722,21 +50722,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -50783,16 +50783,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -50849,21 +50849,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -50919,16 +50919,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -50982,16 +50982,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -51032,21 +51032,21 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: Atlas CLI @@ -51096,16 +51096,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -51173,16 +51173,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -51235,16 +51235,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -51281,16 +51281,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -51343,16 +51343,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -51397,16 +51397,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -51449,21 +51449,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -51505,21 +51505,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -51561,16 +51561,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -51614,16 +51614,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -51675,21 +51675,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -51785,16 +51785,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -51844,16 +51844,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -51904,16 +51904,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -51948,16 +51948,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -51994,16 +51994,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -52037,16 +52037,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -52087,21 +52087,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: Atlas CLI @@ -52137,16 +52137,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" @@ -52187,21 +52187,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - label: Atlas CLI @@ -52239,16 +52239,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" @@ -52288,16 +52288,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -52346,21 +52346,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -52402,16 +52402,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" @@ -52459,21 +52459,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - label: Atlas CLI @@ -52517,16 +52517,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" @@ -52563,16 +52563,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -52615,21 +52615,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: Atlas CLI @@ -52671,16 +52671,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -52728,21 +52728,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: Atlas CLI @@ -52790,16 +52790,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -52847,16 +52847,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -52913,21 +52913,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -52979,16 +52979,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -53047,21 +53047,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: Atlas CLI @@ -53116,16 +53116,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -53171,16 +53171,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -53220,16 +53220,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -53276,16 +53276,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -53338,21 +53338,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -53378,16 +53378,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" @@ -53433,21 +53433,21 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: Atlas CLI @@ -53489,16 +53489,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -53539,16 +53539,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 5b29543f3b..aabf8ee7e4 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 @@ -250,13 +250,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -312,13 +312,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -380,13 +380,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -448,13 +448,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -507,13 +507,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -578,13 +578,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -656,13 +656,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -732,13 +732,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -819,13 +819,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -887,13 +887,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -964,13 +964,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1042,13 +1042,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1121,13 +1121,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1211,13 +1211,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1314,13 +1314,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1391,13 +1391,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1463,13 +1463,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1539,13 +1539,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1623,13 +1623,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1695,13 +1695,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1760,13 +1760,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1831,13 +1831,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1922,13 +1922,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2001,13 +2001,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2066,13 +2066,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -2129,13 +2129,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2209,13 +2209,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2290,13 +2290,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2365,13 +2365,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2458,13 +2458,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2538,13 +2538,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2619,13 +2619,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2701,13 +2701,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2772,13 +2772,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2846,13 +2846,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2921,13 +2921,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2997,13 +2997,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3084,13 +3084,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3174,13 +3174,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3261,13 +3261,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3348,13 +3348,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3425,13 +3425,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3514,13 +3514,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3600,13 +3600,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3675,13 +3675,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3746,13 +3746,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3827,13 +3827,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3922,13 +3922,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4008,13 +4008,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4070,13 +4070,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4144,13 +4144,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4206,13 +4206,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4277,13 +4277,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4348,13 +4348,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4480,13 +4480,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4558,13 +4558,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4665,13 +4665,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4730,13 +4730,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4817,13 +4817,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4879,13 +4879,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4954,13 +4954,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5040,13 +5040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5114,13 +5114,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5207,13 +5207,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5287,13 +5287,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5377,13 +5377,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5467,13 +5467,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5552,13 +5552,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5637,13 +5637,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5725,13 +5725,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5803,13 +5803,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5896,13 +5896,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5979,13 +5979,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6068,13 +6068,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6148,13 +6148,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6231,13 +6231,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6323,13 +6323,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6412,13 +6412,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6496,13 +6496,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6570,13 +6570,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6642,13 +6642,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6728,13 +6728,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6814,13 +6814,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6900,13 +6900,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6986,13 +6986,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7073,13 +7073,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7150,13 +7150,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7239,13 +7239,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7326,13 +7326,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7424,13 +7424,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7521,13 +7521,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7615,13 +7615,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7692,13 +7692,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7781,13 +7781,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7858,13 +7858,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7947,13 +7947,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8031,13 +8031,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8124,13 +8124,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8201,13 +8201,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8298,13 +8298,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8395,13 +8395,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8483,13 +8483,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8579,13 +8579,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8680,13 +8680,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8775,13 +8775,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8865,13 +8865,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8972,13 +8972,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9051,13 +9051,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9129,13 +9129,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9220,13 +9220,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9317,13 +9317,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9411,13 +9411,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9591,13 +9591,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9678,13 +9678,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9774,13 +9774,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9888,13 +9888,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9981,13 +9981,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -10075,13 +10075,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10183,13 +10183,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10267,13 +10267,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10349,13 +10349,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10439,13 +10439,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10520,13 +10520,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10614,13 +10614,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10685,13 +10685,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10783,13 +10783,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10870,13 +10870,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10960,13 +10960,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11040,13 +11040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11115,13 +11115,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11204,13 +11204,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11293,13 +11293,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11387,13 +11387,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11480,13 +11480,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11592,13 +11592,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11700,13 +11700,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11806,13 +11806,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11926,13 +11926,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12019,13 +12019,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12120,13 +12120,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12225,13 +12225,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12300,13 +12300,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12384,13 +12384,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12482,13 +12482,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12572,13 +12572,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12657,13 +12657,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12753,13 +12753,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12827,13 +12827,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12921,13 +12921,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13068,13 +13068,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13162,13 +13162,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13248,13 +13248,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13370,13 +13370,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13435,13 +13435,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13524,13 +13524,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13607,13 +13607,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13678,13 +13678,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13762,13 +13762,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13835,13 +13835,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13931,13 +13931,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13996,13 +13996,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14079,13 +14079,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14156,13 +14156,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14228,13 +14228,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14320,13 +14320,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14398,13 +14398,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14478,13 +14478,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14549,13 +14549,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14621,13 +14621,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14713,13 +14713,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14790,13 +14790,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14873,13 +14873,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14957,13 +14957,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15055,13 +15055,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15156,13 +15156,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15227,13 +15227,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15462,13 +15462,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15549,13 +15549,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15631,13 +15631,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15733,13 +15733,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15816,13 +15816,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15913,13 +15913,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16041,13 +16041,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16166,13 +16166,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16228,13 +16228,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16308,13 +16308,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16382,13 +16382,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16465,13 +16465,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16562,13 +16562,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16646,13 +16646,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16784,13 +16784,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16870,13 +16870,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16935,13 +16935,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17046,13 +17046,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17160,13 +17160,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17266,13 +17266,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17343,13 +17343,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17433,13 +17433,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17521,13 +17521,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17632,13 +17632,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17740,13 +17740,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17815,13 +17815,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17894,13 +17894,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17967,13 +17967,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18040,13 +18040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18117,13 +18117,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18205,13 +18205,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18271,13 +18271,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18345,13 +18345,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18437,13 +18437,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18530,13 +18530,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18634,13 +18634,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18717,13 +18717,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18800,13 +18800,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18881,13 +18881,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18952,13 +18952,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19023,13 +19023,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19082,13 +19082,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19142,13 +19142,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19213,13 +19213,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19272,13 +19272,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19331,13 +19331,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19393,13 +19393,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19455,13 +19455,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19517,13 +19517,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19640,13 +19640,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19728,13 +19728,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19812,13 +19812,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19889,13 +19889,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19964,13 +19964,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20056,13 +20056,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20121,13 +20121,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20195,13 +20195,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20269,13 +20269,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20344,13 +20344,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20433,13 +20433,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20513,13 +20513,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20609,13 +20609,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20686,13 +20686,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20763,13 +20763,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20859,13 +20859,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20949,13 +20949,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21037,13 +21037,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21125,13 +21125,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21202,13 +21202,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21267,13 +21267,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21341,13 +21341,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21417,13 +21417,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21503,13 +21503,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21588,13 +21588,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21671,13 +21671,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21765,13 +21765,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21845,13 +21845,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21934,13 +21934,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22024,13 +22024,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22133,13 +22133,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22232,13 +22232,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22332,13 +22332,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22399,13 +22399,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22478,13 +22478,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22555,13 +22555,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22629,13 +22629,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22706,13 +22706,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22784,13 +22784,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22855,13 +22855,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22928,13 +22928,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22999,13 +22999,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23081,13 +23081,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23163,13 +23163,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23284,13 +23284,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23366,13 +23366,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23445,13 +23445,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23575,13 +23575,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23812,13 +23812,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23903,13 +23903,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24018,13 +24018,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24149,13 +24149,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24271,13 +24271,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24339,13 +24339,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24405,13 +24405,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24483,13 +24483,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24561,13 +24561,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24638,13 +24638,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24709,13 +24709,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24780,13 +24780,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24857,13 +24857,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24943,13 +24943,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25035,13 +25035,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25124,13 +25124,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25210,13 +25210,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25297,13 +25297,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25371,13 +25371,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25449,13 +25449,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25529,13 +25529,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25607,13 +25607,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25693,13 +25693,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25764,13 +25764,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25839,13 +25839,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25914,13 +25914,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25986,13 +25986,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26072,13 +26072,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26160,13 +26160,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26228,13 +26228,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26305,13 +26305,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26373,13 +26373,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26447,13 +26447,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26524,13 +26524,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26604,13 +26604,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26693,13 +26693,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26797,13 +26797,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26877,13 +26877,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26963,13 +26963,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27049,13 +27049,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27127,13 +27127,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27225,13 +27225,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27313,13 +27313,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27396,13 +27396,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27480,13 +27480,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27566,13 +27566,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27652,13 +27652,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27738,13 +27738,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27818,13 +27818,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27905,13 +27905,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27986,13 +27986,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28082,13 +28082,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28144,13 +28144,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28218,13 +28218,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28277,13 +28277,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28339,13 +28339,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28415,13 +28415,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28489,13 +28489,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28578,13 +28578,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28655,13 +28655,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28746,13 +28746,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28816,13 +28816,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28901,13 +28901,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28981,13 +28981,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29052,13 +29052,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -29121,13 +29121,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29201,13 +29201,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29276,13 +29276,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29351,13 +29351,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29429,13 +29429,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29505,13 +29505,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29595,13 +29595,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29682,13 +29682,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29783,13 +29783,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29878,13 +29878,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29968,13 +29968,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30041,13 +30041,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30127,13 +30127,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30237,13 +30237,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30323,13 +30323,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30391,13 +30391,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30476,13 +30476,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30556,13 +30556,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30633,13 +30633,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30710,13 +30710,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30787,13 +30787,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30862,13 +30862,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30951,13 +30951,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31104,13 +31104,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31169,13 +31169,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31252,13 +31252,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31328,13 +31328,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31396,13 +31396,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31458,13 +31458,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31532,13 +31532,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31603,13 +31603,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31677,13 +31677,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31748,13 +31748,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -31820,13 +31820,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31906,13 +31906,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31986,13 +31986,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32071,13 +32071,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32151,13 +32151,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32219,13 +32219,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32296,13 +32296,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32377,13 +32377,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32461,13 +32461,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32542,13 +32542,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32626,13 +32626,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32708,13 +32708,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32804,13 +32804,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32897,13 +32897,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32996,13 +32996,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33089,13 +33089,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33166,13 +33166,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33246,13 +33246,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33337,13 +33337,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33385,13 +33385,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33458,13 +33458,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33530,13 +33530,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33604,13 +33604,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 d0971c65f1..0b6ce6fcc1 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 @@ -30144,16 +30144,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -30187,16 +30187,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -30231,16 +30231,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -30275,16 +30275,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -30317,16 +30317,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -30364,16 +30364,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -30419,16 +30419,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -30473,16 +30473,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -30534,21 +30534,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -30584,16 +30584,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -30636,21 +30636,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: Atlas CLI @@ -30694,16 +30694,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -30749,16 +30749,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -30811,21 +30811,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: Atlas CLI @@ -30884,16 +30884,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -30940,21 +30940,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - label: Atlas CLI @@ -30994,16 +30994,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" @@ -31047,16 +31047,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -31108,21 +31108,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: Atlas CLI @@ -31162,16 +31162,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" @@ -31207,16 +31207,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -31253,16 +31253,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -31316,21 +31316,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: Atlas CLI @@ -31364,16 +31364,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -31407,16 +31407,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -31461,21 +31461,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: Atlas CLI @@ -31519,21 +31519,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: Atlas CLI @@ -31571,16 +31571,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -31631,21 +31631,21 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -31695,16 +31695,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -31751,16 +31751,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -31807,16 +31807,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -31855,16 +31855,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -31908,21 +31908,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: Atlas CLI @@ -31967,16 +31967,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -32023,16 +32023,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -32088,21 +32088,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -32159,21 +32159,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -32223,16 +32223,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -32282,16 +32282,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -32338,16 +32338,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -32402,21 +32402,21 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: Atlas CLI @@ -32465,16 +32465,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -32513,16 +32513,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -32561,21 +32561,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -32621,16 +32621,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -32683,21 +32683,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -32746,21 +32746,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -32792,16 +32792,16 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -32842,21 +32842,21 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: Atlas CLI @@ -32888,16 +32888,16 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -32936,21 +32936,21 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: Atlas CLI @@ -32985,16 +32985,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -33076,21 +33076,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: Atlas CLI @@ -33135,16 +33135,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -33210,16 +33210,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -33254,16 +33254,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -33313,21 +33313,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: Atlas CLI @@ -33359,16 +33359,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -33410,21 +33410,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: Atlas CLI @@ -33473,16 +33473,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -33524,16 +33524,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -33588,21 +33588,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: Atlas CLI @@ -33643,16 +33643,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -33827,21 +33827,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: Atlas CLI @@ -33891,16 +33891,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -33945,16 +33945,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -34009,21 +34009,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: Atlas CLI @@ -34118,16 +34118,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -34181,16 +34181,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" @@ -34235,16 +34235,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -34297,21 +34297,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: Atlas CLI @@ -34357,16 +34357,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -34411,16 +34411,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -34477,21 +34477,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -34543,16 +34543,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -34602,16 +34602,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -34654,16 +34654,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -34704,16 +34704,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -34766,21 +34766,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: Atlas CLI @@ -34826,16 +34826,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -34888,21 +34888,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: Atlas CLI @@ -34954,16 +34954,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -35015,16 +35015,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -35083,21 +35083,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -35147,16 +35147,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -35208,16 +35208,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -35261,16 +35261,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -35327,21 +35327,21 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: Atlas CLI @@ -35395,21 +35395,21 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: Atlas CLI @@ -35452,16 +35452,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -35514,16 +35514,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -35567,16 +35567,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -35629,16 +35629,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -35684,16 +35684,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -35749,16 +35749,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -35803,16 +35803,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" @@ -35870,21 +35870,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: Atlas CLI @@ -35941,21 +35941,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: Atlas CLI @@ -36006,21 +36006,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - label: Atlas CLI @@ -36076,21 +36076,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: Atlas CLI @@ -36150,16 +36150,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -36217,16 +36217,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -36281,16 +36281,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -36356,21 +36356,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: Atlas CLI @@ -36415,16 +36415,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -36469,16 +36469,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -36532,21 +36532,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: Atlas CLI @@ -36602,16 +36602,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -36667,21 +36667,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: Atlas CLI @@ -36797,21 +36797,21 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: Atlas CLI @@ -36858,16 +36858,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -36924,21 +36924,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: Atlas CLI @@ -36993,16 +36993,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -37059,16 +37059,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -37134,21 +37134,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: Atlas CLI @@ -37219,16 +37219,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -37277,16 +37277,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -37334,16 +37334,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -37396,21 +37396,21 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: Atlas CLI @@ -37456,16 +37456,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -37521,21 +37521,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: Atlas CLI @@ -37574,21 +37574,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: Atlas CLI @@ -37646,16 +37646,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -37706,21 +37706,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -37776,16 +37776,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -37831,16 +37831,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -37883,16 +37883,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -37944,21 +37944,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -38009,21 +38009,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -38077,16 +38077,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" @@ -38141,21 +38141,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ -d '{ }' - label: Atlas CLI @@ -38221,16 +38221,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" @@ -38295,16 +38295,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" @@ -38368,16 +38368,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" @@ -38450,21 +38450,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ -d '{ }' - label: Atlas CLI @@ -38519,16 +38519,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" @@ -38589,16 +38589,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" @@ -38662,21 +38662,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ -d '{ }' - label: Atlas CLI @@ -38721,16 +38721,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -38782,21 +38782,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: Atlas CLI @@ -38851,16 +38851,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -38914,16 +38914,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -38974,16 +38974,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -39041,21 +39041,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -39096,16 +39096,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -39160,21 +39160,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ -d '{ }' - label: Atlas CLI @@ -39223,21 +39223,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ -d '{ }' - label: Atlas CLI @@ -39313,16 +39313,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -39370,16 +39370,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -39427,21 +39427,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: Atlas CLI @@ -39488,21 +39488,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: Atlas CLI @@ -39537,16 +39537,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" @@ -39595,16 +39595,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -39651,21 +39651,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: Atlas CLI @@ -39713,16 +39713,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -39764,16 +39764,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -39830,21 +39830,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: Atlas CLI @@ -39879,16 +39879,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -39923,16 +39923,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -39979,21 +39979,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: Atlas CLI @@ -40035,16 +40035,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -40084,16 +40084,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -40146,21 +40146,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: Atlas CLI @@ -40203,16 +40203,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -40257,21 +40257,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: Atlas CLI @@ -40309,16 +40309,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -40359,16 +40359,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -40421,21 +40421,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -40477,16 +40477,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -40543,16 +40543,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -40609,16 +40609,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -40685,21 +40685,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -40761,16 +40761,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -40806,16 +40806,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -40953,21 +40953,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: Atlas CLI @@ -41029,16 +41029,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -41098,16 +41098,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -41180,21 +41180,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: Atlas CLI @@ -41237,16 +41237,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -41308,21 +41308,21 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: Atlas CLI @@ -41400,16 +41400,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -41485,16 +41485,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -41530,16 +41530,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -41596,21 +41596,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: Atlas CLI @@ -41650,16 +41650,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -41706,21 +41706,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: Atlas CLI @@ -41776,16 +41776,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -41834,16 +41834,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -41933,16 +41933,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -41995,16 +41995,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -42039,16 +42039,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -42113,16 +42113,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -42186,16 +42186,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -42258,16 +42258,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -42307,16 +42307,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -42371,16 +42371,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -42434,16 +42434,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -42509,21 +42509,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -42586,21 +42586,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -42641,16 +42641,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -42695,21 +42695,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -42749,21 +42749,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -42805,16 +42805,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -42859,16 +42859,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -42921,21 +42921,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -42970,16 +42970,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -43020,16 +43020,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -43102,16 +43102,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -43185,16 +43185,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -43278,21 +43278,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -43345,21 +43345,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: Atlas CLI @@ -43396,16 +43396,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -43443,21 +43443,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: Atlas CLI @@ -43503,21 +43503,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: Atlas CLI @@ -43564,16 +43564,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -43605,16 +43605,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -43646,16 +43646,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -43695,21 +43695,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: Atlas CLI @@ -43740,21 +43740,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: Atlas CLI @@ -43785,21 +43785,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: Atlas CLI @@ -43831,16 +43831,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -43873,16 +43873,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -43915,21 +43915,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: Atlas CLI @@ -44002,16 +44002,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -44059,16 +44059,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -44116,21 +44116,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: Atlas CLI @@ -44173,16 +44173,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -44225,16 +44225,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -44288,21 +44288,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: Atlas CLI @@ -44337,16 +44337,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -44388,21 +44388,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: Atlas CLI @@ -44444,16 +44444,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -44496,16 +44496,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -44558,21 +44558,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: Atlas CLI @@ -44617,16 +44617,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -44680,16 +44680,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -44733,21 +44733,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: Atlas CLI @@ -44790,21 +44790,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: Atlas CLI @@ -44857,16 +44857,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -44920,16 +44920,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -44982,16 +44982,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -45042,21 +45042,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: Atlas CLI @@ -45101,16 +45101,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -45163,16 +45163,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -45226,16 +45226,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -45301,21 +45301,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -45374,16 +45374,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -45444,16 +45444,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -45496,21 +45496,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: Atlas CLI @@ -45544,16 +45544,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -45594,21 +45594,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: Atlas CLI @@ -45651,16 +45651,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -45714,21 +45714,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -45778,16 +45778,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -45837,16 +45837,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -45903,21 +45903,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: Atlas CLI @@ -45953,16 +45953,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -46007,21 +46007,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: Atlas CLI @@ -46060,16 +46060,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -46129,21 +46129,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: Atlas CLI @@ -46186,16 +46186,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -46240,16 +46240,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -46285,16 +46285,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -46335,16 +46335,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -46420,16 +46420,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -46465,16 +46465,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" @@ -46518,16 +46518,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -46574,16 +46574,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -46656,16 +46656,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -46709,16 +46709,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -46764,16 +46764,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -46862,16 +46862,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -47071,16 +47071,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -47141,16 +47141,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -47228,16 +47228,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -47322,16 +47322,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -47368,16 +47368,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -47413,16 +47413,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -47466,21 +47466,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -47523,21 +47523,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -47581,21 +47581,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: Atlas CLI @@ -47635,16 +47635,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -47680,16 +47680,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -47732,21 +47732,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: Atlas CLI @@ -47792,16 +47792,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -47855,21 +47855,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -47921,16 +47921,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -47977,16 +47977,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -48039,16 +48039,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -48090,16 +48090,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -48145,21 +48145,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: Atlas CLI @@ -48204,16 +48204,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -48258,16 +48258,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -48317,21 +48317,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: Atlas CLI @@ -48367,16 +48367,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" @@ -48418,21 +48418,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - label: Atlas CLI @@ -48473,16 +48473,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" @@ -48522,16 +48522,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -48580,21 +48580,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -48644,21 +48644,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -48694,16 +48694,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -48746,21 +48746,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: Atlas CLI @@ -48794,16 +48794,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -48844,21 +48844,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: Atlas CLI @@ -48900,16 +48900,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -48955,16 +48955,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -49015,21 +49015,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -49092,16 +49092,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -49144,16 +49144,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -49202,21 +49202,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: Atlas CLI @@ -49264,16 +49264,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -49318,16 +49318,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -49384,21 +49384,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: Atlas CLI @@ -49447,21 +49447,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ -d '{ }' - label: Atlas CLI @@ -49507,16 +49507,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" @@ -49564,16 +49564,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" @@ -49622,21 +49622,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ -d '{ }' - label: Atlas CLI @@ -49684,21 +49684,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ -d '{ }' - label: Atlas CLI @@ -49743,16 +49743,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" @@ -49794,16 +49794,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -49853,21 +49853,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: Atlas CLI @@ -49914,16 +49914,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -49980,21 +49980,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -50026,16 +50026,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -50079,21 +50079,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: Atlas CLI @@ -50127,16 +50127,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -50169,16 +50169,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -50220,21 +50220,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: Atlas CLI @@ -50275,16 +50275,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -50332,16 +50332,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -50385,16 +50385,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -50447,21 +50447,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -50499,21 +50499,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ -d '{ }' - label: Atlas CLI @@ -50558,16 +50558,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -50613,16 +50613,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -50668,21 +50668,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: Atlas CLI @@ -50726,16 +50726,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -50773,16 +50773,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -50827,21 +50827,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -50879,16 +50879,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -50930,21 +50930,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -50988,16 +50988,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -51041,16 +51041,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -51103,21 +51103,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -51164,16 +51164,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -51230,21 +51230,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -51300,16 +51300,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -51363,16 +51363,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -51413,21 +51413,21 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: Atlas CLI @@ -51477,16 +51477,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -51554,16 +51554,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -51616,16 +51616,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -51662,16 +51662,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -51724,16 +51724,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -51778,16 +51778,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -51830,21 +51830,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -51886,21 +51886,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -51942,16 +51942,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -51995,16 +51995,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -52056,21 +52056,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -52166,16 +52166,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -52225,16 +52225,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -52285,16 +52285,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -52329,16 +52329,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -52375,16 +52375,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -52418,16 +52418,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -52468,21 +52468,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: Atlas CLI @@ -52518,16 +52518,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" @@ -52568,21 +52568,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - label: Atlas CLI @@ -52620,16 +52620,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" @@ -52669,16 +52669,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -52727,21 +52727,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -52783,16 +52783,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" @@ -52840,21 +52840,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - label: Atlas CLI @@ -52898,16 +52898,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" @@ -52944,16 +52944,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -52996,21 +52996,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: Atlas CLI @@ -53052,16 +53052,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -53109,21 +53109,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: Atlas CLI @@ -53171,16 +53171,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -53228,16 +53228,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -53294,21 +53294,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -53360,16 +53360,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -53428,21 +53428,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: Atlas CLI @@ -53497,16 +53497,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -53552,16 +53552,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -53601,16 +53601,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -53657,16 +53657,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -53719,21 +53719,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -53759,16 +53759,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" @@ -53814,21 +53814,21 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: Atlas CLI @@ -53870,16 +53870,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -53920,16 +53920,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 0b99208520..49fe3b614d 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 @@ -250,13 +250,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -312,13 +312,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -380,13 +380,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -448,13 +448,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -507,13 +507,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -578,13 +578,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -656,13 +656,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -732,13 +732,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -819,13 +819,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -887,13 +887,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -964,13 +964,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1042,13 +1042,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1121,13 +1121,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1211,13 +1211,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1314,13 +1314,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1391,13 +1391,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1463,13 +1463,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1539,13 +1539,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1623,13 +1623,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1695,13 +1695,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1760,13 +1760,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1831,13 +1831,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1922,13 +1922,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2001,13 +2001,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2066,13 +2066,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -2129,13 +2129,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2209,13 +2209,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2290,13 +2290,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2365,13 +2365,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2458,13 +2458,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2538,13 +2538,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2619,13 +2619,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2701,13 +2701,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2772,13 +2772,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2846,13 +2846,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2921,13 +2921,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2997,13 +2997,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3084,13 +3084,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3174,13 +3174,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3261,13 +3261,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3348,13 +3348,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3425,13 +3425,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3514,13 +3514,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3600,13 +3600,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3675,13 +3675,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3746,13 +3746,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3827,13 +3827,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3922,13 +3922,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4008,13 +4008,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4070,13 +4070,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4144,13 +4144,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4206,13 +4206,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4277,13 +4277,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4348,13 +4348,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4480,13 +4480,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4558,13 +4558,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4665,13 +4665,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4730,13 +4730,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4817,13 +4817,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4879,13 +4879,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4954,13 +4954,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5040,13 +5040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5114,13 +5114,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5207,13 +5207,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5287,13 +5287,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5377,13 +5377,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5467,13 +5467,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5552,13 +5552,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5637,13 +5637,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5725,13 +5725,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5803,13 +5803,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5896,13 +5896,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5979,13 +5979,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6068,13 +6068,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6148,13 +6148,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6231,13 +6231,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6323,13 +6323,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6412,13 +6412,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6496,13 +6496,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6570,13 +6570,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6642,13 +6642,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6728,13 +6728,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6814,13 +6814,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6900,13 +6900,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6986,13 +6986,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7073,13 +7073,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7150,13 +7150,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7239,13 +7239,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7326,13 +7326,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7424,13 +7424,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7521,13 +7521,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7615,13 +7615,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7692,13 +7692,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7781,13 +7781,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7858,13 +7858,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7947,13 +7947,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8031,13 +8031,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8124,13 +8124,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8201,13 +8201,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8298,13 +8298,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8395,13 +8395,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8483,13 +8483,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8579,13 +8579,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8680,13 +8680,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8775,13 +8775,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8865,13 +8865,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8972,13 +8972,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9051,13 +9051,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9129,13 +9129,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9220,13 +9220,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9317,13 +9317,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9411,13 +9411,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9591,13 +9591,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9678,13 +9678,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9774,13 +9774,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9888,13 +9888,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9981,13 +9981,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -10075,13 +10075,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10183,13 +10183,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10267,13 +10267,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10349,13 +10349,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10439,13 +10439,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10520,13 +10520,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10614,13 +10614,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10685,13 +10685,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10783,13 +10783,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10870,13 +10870,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10960,13 +10960,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11040,13 +11040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11115,13 +11115,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11204,13 +11204,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11293,13 +11293,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11387,13 +11387,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11480,13 +11480,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11592,13 +11592,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11700,13 +11700,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11806,13 +11806,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11926,13 +11926,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12019,13 +12019,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12120,13 +12120,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12225,13 +12225,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12300,13 +12300,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12384,13 +12384,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12482,13 +12482,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12572,13 +12572,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12657,13 +12657,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12753,13 +12753,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12827,13 +12827,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12921,13 +12921,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13068,13 +13068,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13162,13 +13162,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13248,13 +13248,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13370,13 +13370,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13435,13 +13435,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13524,13 +13524,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13607,13 +13607,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13678,13 +13678,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13762,13 +13762,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13835,13 +13835,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13931,13 +13931,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13996,13 +13996,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14079,13 +14079,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14156,13 +14156,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14228,13 +14228,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14320,13 +14320,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14398,13 +14398,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14478,13 +14478,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14549,13 +14549,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14621,13 +14621,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14713,13 +14713,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14790,13 +14790,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14873,13 +14873,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14957,13 +14957,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15055,13 +15055,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15156,13 +15156,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15227,13 +15227,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15462,13 +15462,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15549,13 +15549,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15631,13 +15631,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15733,13 +15733,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15816,13 +15816,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15913,13 +15913,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16041,13 +16041,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16166,13 +16166,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16228,13 +16228,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16308,13 +16308,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16382,13 +16382,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16465,13 +16465,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16562,13 +16562,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16646,13 +16646,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16784,13 +16784,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16870,13 +16870,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16935,13 +16935,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17046,13 +17046,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17160,13 +17160,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17266,13 +17266,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17343,13 +17343,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17433,13 +17433,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17521,13 +17521,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17632,13 +17632,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17740,13 +17740,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17815,13 +17815,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17894,13 +17894,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17967,13 +17967,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18040,13 +18040,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18117,13 +18117,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18205,13 +18205,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18271,13 +18271,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18345,13 +18345,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18437,13 +18437,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18530,13 +18530,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18634,13 +18634,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18717,13 +18717,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18800,13 +18800,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18881,13 +18881,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18952,13 +18952,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19023,13 +19023,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19082,13 +19082,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19142,13 +19142,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19213,13 +19213,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19272,13 +19272,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19331,13 +19331,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19393,13 +19393,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19455,13 +19455,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19517,13 +19517,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19640,13 +19640,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19728,13 +19728,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19812,13 +19812,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19889,13 +19889,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19964,13 +19964,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20056,13 +20056,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20121,13 +20121,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20195,13 +20195,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20269,13 +20269,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20344,13 +20344,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20433,13 +20433,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20513,13 +20513,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20609,13 +20609,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20686,13 +20686,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20763,13 +20763,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20859,13 +20859,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20949,13 +20949,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21037,13 +21037,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21125,13 +21125,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21202,13 +21202,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21267,13 +21267,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21341,13 +21341,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21417,13 +21417,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21503,13 +21503,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21588,13 +21588,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21671,13 +21671,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21765,13 +21765,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21845,13 +21845,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21934,13 +21934,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22024,13 +22024,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22133,13 +22133,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22232,13 +22232,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22332,13 +22332,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22399,13 +22399,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22478,13 +22478,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22555,13 +22555,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22629,13 +22629,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22706,13 +22706,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22784,13 +22784,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22855,13 +22855,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22928,13 +22928,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22999,13 +22999,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23081,13 +23081,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23163,13 +23163,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23284,13 +23284,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23366,13 +23366,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23445,13 +23445,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23575,13 +23575,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23812,13 +23812,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23903,13 +23903,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24018,13 +24018,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24149,13 +24149,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24271,13 +24271,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24339,13 +24339,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24405,13 +24405,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24483,13 +24483,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24561,13 +24561,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24638,13 +24638,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24709,13 +24709,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24780,13 +24780,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24857,13 +24857,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24943,13 +24943,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25035,13 +25035,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25124,13 +25124,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25210,13 +25210,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25297,13 +25297,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25371,13 +25371,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25449,13 +25449,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25529,13 +25529,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25607,13 +25607,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25693,13 +25693,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25764,13 +25764,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25839,13 +25839,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25914,13 +25914,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25986,13 +25986,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26072,13 +26072,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26160,13 +26160,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26228,13 +26228,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26305,13 +26305,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26373,13 +26373,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26447,13 +26447,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26524,13 +26524,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26604,13 +26604,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26693,13 +26693,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26797,13 +26797,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26877,13 +26877,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26963,13 +26963,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27049,13 +27049,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27127,13 +27127,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27225,13 +27225,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27313,13 +27313,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27396,13 +27396,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27480,13 +27480,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27566,13 +27566,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27652,13 +27652,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27738,13 +27738,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27818,13 +27818,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27905,13 +27905,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27986,13 +27986,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28082,13 +28082,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28144,13 +28144,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28218,13 +28218,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28277,13 +28277,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28339,13 +28339,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28415,13 +28415,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28489,13 +28489,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28578,13 +28578,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28655,13 +28655,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28746,13 +28746,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28817,13 +28817,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28894,13 +28894,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28974,13 +28974,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29055,13 +29055,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29141,13 +29141,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29211,13 +29211,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29296,13 +29296,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29376,13 +29376,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29447,13 +29447,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -29516,13 +29516,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29596,13 +29596,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29671,13 +29671,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29746,13 +29746,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29824,13 +29824,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29900,13 +29900,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29990,13 +29990,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30077,13 +30077,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30178,13 +30178,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30273,13 +30273,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30363,13 +30363,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30436,13 +30436,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30522,13 +30522,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30632,13 +30632,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30718,13 +30718,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30786,13 +30786,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30871,13 +30871,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30951,13 +30951,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31028,13 +31028,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31105,13 +31105,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31182,13 +31182,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -31257,13 +31257,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31346,13 +31346,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31499,13 +31499,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31564,13 +31564,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31647,13 +31647,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31723,13 +31723,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31814,13 +31814,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31882,13 +31882,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31944,13 +31944,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32018,13 +32018,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32089,13 +32089,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32163,13 +32163,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32234,13 +32234,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32306,13 +32306,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32392,13 +32392,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32472,13 +32472,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32557,13 +32557,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32637,13 +32637,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32705,13 +32705,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32782,13 +32782,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32863,13 +32863,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32947,13 +32947,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33028,13 +33028,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33112,13 +33112,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33194,13 +33194,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33290,13 +33290,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33383,13 +33383,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33482,13 +33482,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33575,13 +33575,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33652,13 +33652,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33732,13 +33732,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33823,13 +33823,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33871,13 +33871,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33944,13 +33944,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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 '{ }'" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --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 '{ }'" + "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -34016,13 +34016,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\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\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -34090,13 +34090,13 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account)", - "source": "curl --header \"Authorization: Bearer {ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "curl (Service Account Access Token)", + "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 00451501b9..586b496f20 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 @@ -30556,16 +30556,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -30599,16 +30599,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -30643,16 +30643,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -30687,16 +30687,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -30729,16 +30729,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -30776,16 +30776,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -30831,16 +30831,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -30885,16 +30885,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -30946,21 +30946,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -30996,16 +30996,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -31048,21 +31048,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - label: Atlas CLI @@ -31106,16 +31106,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -31161,16 +31161,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -31223,21 +31223,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - label: Atlas CLI @@ -31296,16 +31296,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -31352,21 +31352,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - label: Atlas CLI @@ -31406,16 +31406,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" @@ -31459,16 +31459,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -31520,21 +31520,21 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - label: Atlas CLI @@ -31574,16 +31574,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" @@ -31619,16 +31619,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -31665,16 +31665,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -31728,21 +31728,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - label: Atlas CLI @@ -31776,16 +31776,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -31819,16 +31819,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -31873,21 +31873,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - label: Atlas CLI @@ -31931,21 +31931,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - label: Atlas CLI @@ -31983,16 +31983,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -32043,21 +32043,21 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -32107,16 +32107,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -32163,16 +32163,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -32219,16 +32219,16 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -32267,16 +32267,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -32320,21 +32320,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - label: Atlas CLI @@ -32379,16 +32379,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -32435,16 +32435,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -32500,21 +32500,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -32571,21 +32571,21 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - label: Atlas CLI @@ -32635,16 +32635,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -32694,16 +32694,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -32750,16 +32750,16 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -32814,21 +32814,21 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - label: Atlas CLI @@ -32877,16 +32877,16 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -32925,16 +32925,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -32973,21 +32973,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -33033,16 +33033,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -33095,21 +33095,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -33158,21 +33158,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -33204,16 +33204,16 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -33254,21 +33254,21 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - label: Atlas CLI @@ -33300,16 +33300,16 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -33348,21 +33348,21 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - label: Atlas CLI @@ -33397,16 +33397,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -33488,21 +33488,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - label: Atlas CLI @@ -33547,16 +33547,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -33622,16 +33622,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -33666,16 +33666,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -33725,21 +33725,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - label: Atlas CLI @@ -33771,16 +33771,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -33822,21 +33822,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - label: Atlas CLI @@ -33885,16 +33885,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -33936,16 +33936,16 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -34000,21 +34000,21 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - label: Atlas CLI @@ -34055,16 +34055,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -34239,21 +34239,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - label: Atlas CLI @@ -34303,16 +34303,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -34357,16 +34357,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -34421,21 +34421,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - label: Atlas CLI @@ -34530,16 +34530,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -34593,16 +34593,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" @@ -34647,16 +34647,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -34709,21 +34709,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - label: Atlas CLI @@ -34769,16 +34769,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -34823,16 +34823,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -34889,21 +34889,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -34955,16 +34955,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -35014,16 +35014,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -35066,16 +35066,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -35116,16 +35116,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -35178,21 +35178,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - label: Atlas CLI @@ -35238,16 +35238,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -35300,21 +35300,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - label: Atlas CLI @@ -35366,16 +35366,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -35427,16 +35427,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -35495,21 +35495,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -35559,16 +35559,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -35620,16 +35620,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -35673,16 +35673,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -35739,21 +35739,21 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - label: Atlas CLI @@ -35807,21 +35807,21 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - label: Atlas CLI @@ -35864,16 +35864,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -35926,16 +35926,16 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -35979,16 +35979,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -36041,16 +36041,16 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -36096,16 +36096,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -36161,16 +36161,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -36215,16 +36215,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" @@ -36282,21 +36282,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: Atlas CLI @@ -36353,21 +36353,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - label: Atlas CLI @@ -36418,21 +36418,21 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - label: Atlas CLI @@ -36488,21 +36488,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - label: Atlas CLI @@ -36562,16 +36562,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -36629,16 +36629,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -36693,16 +36693,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -36768,21 +36768,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - label: Atlas CLI @@ -36827,16 +36827,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -36881,16 +36881,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -36944,21 +36944,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - label: Atlas CLI @@ -37014,16 +37014,16 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -37079,21 +37079,21 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - label: Atlas CLI @@ -37209,21 +37209,21 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - label: Atlas CLI @@ -37270,16 +37270,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -37336,21 +37336,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - label: Atlas CLI @@ -37405,16 +37405,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -37471,16 +37471,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -37546,21 +37546,21 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - label: Atlas CLI @@ -37631,16 +37631,16 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -37689,16 +37689,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -37746,16 +37746,16 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -37808,21 +37808,21 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - label: Atlas CLI @@ -37868,16 +37868,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -37933,21 +37933,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - label: Atlas CLI @@ -37986,21 +37986,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - label: Atlas CLI @@ -38058,16 +38058,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -38118,21 +38118,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -38188,16 +38188,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -38243,16 +38243,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -38295,16 +38295,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -38356,21 +38356,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -38421,21 +38421,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - label: Atlas CLI @@ -38489,16 +38489,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" @@ -38553,21 +38553,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ -d '{ }' - label: Atlas CLI @@ -38633,16 +38633,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" @@ -38707,16 +38707,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" @@ -38780,16 +38780,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" @@ -38862,21 +38862,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ -d '{ }' - label: Atlas CLI @@ -38931,16 +38931,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" @@ -39001,16 +39001,16 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" @@ -39074,21 +39074,21 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ -d '{ }' - label: Atlas CLI @@ -39133,16 +39133,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -39194,21 +39194,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - label: Atlas CLI @@ -39263,16 +39263,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -39326,16 +39326,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -39386,16 +39386,16 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -39453,21 +39453,21 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - label: Atlas CLI @@ -39508,16 +39508,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -39572,21 +39572,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ -d '{ }' - label: Atlas CLI @@ -39635,21 +39635,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ -d '{ }' - label: Atlas CLI @@ -39725,16 +39725,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -39782,16 +39782,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -39839,21 +39839,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - label: Atlas CLI @@ -39900,21 +39900,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - label: Atlas CLI @@ -39949,16 +39949,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" @@ -40007,16 +40007,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -40063,21 +40063,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - label: Atlas CLI @@ -40125,16 +40125,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -40176,16 +40176,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -40242,21 +40242,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - label: Atlas CLI @@ -40291,16 +40291,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -40335,16 +40335,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -40391,21 +40391,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - label: Atlas CLI @@ -40447,16 +40447,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -40496,16 +40496,16 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -40558,21 +40558,21 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - label: Atlas CLI @@ -40615,16 +40615,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -40669,21 +40669,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - label: Atlas CLI @@ -40721,16 +40721,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -40771,16 +40771,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -40833,21 +40833,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -40889,16 +40889,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -40955,16 +40955,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -41021,16 +41021,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -41097,21 +41097,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -41173,16 +41173,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -41218,16 +41218,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -41365,21 +41365,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - label: Atlas CLI @@ -41441,16 +41441,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -41510,16 +41510,16 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -41592,21 +41592,21 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - label: Atlas CLI @@ -41649,16 +41649,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -41720,21 +41720,21 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - label: Atlas CLI @@ -41812,16 +41812,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -41897,16 +41897,16 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -41942,16 +41942,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -42008,21 +42008,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - label: Atlas CLI @@ -42062,16 +42062,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -42118,21 +42118,21 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - label: Atlas CLI @@ -42188,16 +42188,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -42246,16 +42246,16 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -42345,16 +42345,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -42407,16 +42407,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -42451,16 +42451,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -42525,16 +42525,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -42598,16 +42598,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -42670,16 +42670,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -42719,16 +42719,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -42783,16 +42783,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -42846,16 +42846,16 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -42921,21 +42921,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -42998,21 +42998,21 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - label: Atlas CLI @@ -43053,16 +43053,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -43107,21 +43107,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -43161,21 +43161,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - label: Atlas CLI @@ -43217,16 +43217,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -43271,16 +43271,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -43333,21 +43333,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -43382,16 +43382,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -43432,16 +43432,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -43514,16 +43514,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -43597,16 +43597,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -43690,21 +43690,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - label: Atlas CLI @@ -43757,21 +43757,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - label: Atlas CLI @@ -43808,16 +43808,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -43855,21 +43855,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - label: Atlas CLI @@ -43915,21 +43915,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - label: Atlas CLI @@ -43976,16 +43976,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -44017,16 +44017,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -44058,16 +44058,16 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -44107,21 +44107,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - label: Atlas CLI @@ -44152,21 +44152,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - label: Atlas CLI @@ -44197,21 +44197,21 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - label: Atlas CLI @@ -44243,16 +44243,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -44285,16 +44285,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -44327,21 +44327,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - label: Atlas CLI @@ -44414,16 +44414,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -44471,16 +44471,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -44528,21 +44528,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - label: Atlas CLI @@ -44585,16 +44585,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -44637,16 +44637,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -44700,21 +44700,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - label: Atlas CLI @@ -44749,16 +44749,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -44800,21 +44800,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - label: Atlas CLI @@ -44856,16 +44856,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -44908,16 +44908,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -44970,21 +44970,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - label: Atlas CLI @@ -45029,16 +45029,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -45092,16 +45092,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -45145,21 +45145,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - label: Atlas CLI @@ -45202,21 +45202,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - label: Atlas CLI @@ -45269,16 +45269,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -45332,16 +45332,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -45394,16 +45394,16 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -45454,21 +45454,21 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - label: Atlas CLI @@ -45513,16 +45513,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -45575,16 +45575,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -45638,16 +45638,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -45713,21 +45713,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -45786,16 +45786,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -45856,16 +45856,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -45908,21 +45908,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - label: Atlas CLI @@ -45956,16 +45956,16 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -46006,21 +46006,21 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - label: Atlas CLI @@ -46063,16 +46063,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -46126,21 +46126,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - label: Atlas CLI @@ -46190,16 +46190,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -46249,16 +46249,16 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -46315,21 +46315,21 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - label: Atlas CLI @@ -46365,16 +46365,16 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -46419,21 +46419,21 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - label: Atlas CLI @@ -46472,16 +46472,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -46541,21 +46541,21 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - label: Atlas CLI @@ -46598,16 +46598,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -46652,16 +46652,16 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -46697,16 +46697,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -46747,16 +46747,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -46832,16 +46832,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -46877,16 +46877,16 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" @@ -46930,16 +46930,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -46986,16 +46986,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -47068,16 +47068,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -47121,16 +47121,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -47176,16 +47176,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -47274,16 +47274,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -47483,16 +47483,16 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -47553,16 +47553,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -47640,16 +47640,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -47734,16 +47734,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -47780,16 +47780,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -47825,16 +47825,16 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -47878,21 +47878,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -47935,21 +47935,21 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - label: Atlas CLI @@ -47993,21 +47993,21 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - label: Atlas CLI @@ -48047,16 +48047,16 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -48092,16 +48092,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -48144,21 +48144,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - label: Atlas CLI @@ -48204,16 +48204,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -48267,21 +48267,21 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - label: Atlas CLI @@ -48333,16 +48333,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -48389,16 +48389,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -48451,16 +48451,16 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -48502,16 +48502,16 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -48557,21 +48557,21 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - label: Atlas CLI @@ -48616,16 +48616,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -48670,16 +48670,16 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -48729,21 +48729,21 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - label: Atlas CLI @@ -48779,16 +48779,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" @@ -48830,21 +48830,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - label: Atlas CLI @@ -48885,16 +48885,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" @@ -48934,16 +48934,16 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -48992,21 +48992,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -49056,21 +49056,21 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -49106,16 +49106,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -49158,21 +49158,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - label: Atlas CLI @@ -49206,16 +49206,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -49256,21 +49256,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - label: Atlas CLI @@ -49312,16 +49312,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -49367,16 +49367,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -49427,21 +49427,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - label: Atlas CLI @@ -49504,16 +49504,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -49556,16 +49556,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -49614,21 +49614,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - label: Atlas CLI @@ -49676,16 +49676,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -49730,16 +49730,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -49796,21 +49796,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - label: Atlas CLI @@ -49859,21 +49859,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ -d '{ }' - label: Atlas CLI @@ -49919,16 +49919,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" @@ -49976,16 +49976,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" @@ -50034,21 +50034,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ -d '{ }' - label: Atlas CLI @@ -50096,21 +50096,21 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ -d '{ }' - label: Atlas CLI @@ -50155,16 +50155,16 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" @@ -50206,16 +50206,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -50265,21 +50265,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - label: Atlas CLI @@ -50326,16 +50326,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -50392,21 +50392,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -50438,16 +50438,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -50491,21 +50491,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - label: Atlas CLI @@ -50539,16 +50539,16 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -50581,16 +50581,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -50632,21 +50632,21 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - label: Atlas CLI @@ -50687,16 +50687,16 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -50744,16 +50744,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -50797,16 +50797,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -50859,21 +50859,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -50908,16 +50908,16 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss?pretty=true" @@ -50960,21 +50960,21 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss" \ -d '{ }' - label: Atlas CLI @@ -51019,16 +51019,16 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" @@ -51075,16 +51075,16 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}?pretty=true" @@ -51134,21 +51134,21 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" \ -d '{ }' - label: Atlas CLI @@ -51186,21 +51186,21 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ -d '{ }' - label: Atlas CLI @@ -51245,16 +51245,16 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -51300,16 +51300,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -51355,21 +51355,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - label: Atlas CLI @@ -51413,16 +51413,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -51460,16 +51460,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -51514,21 +51514,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - label: Atlas CLI @@ -51566,16 +51566,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -51617,21 +51617,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - label: Atlas CLI @@ -51675,16 +51675,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -51728,16 +51728,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -51790,21 +51790,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - label: Atlas CLI @@ -51851,16 +51851,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -51917,21 +51917,21 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - label: Atlas CLI @@ -51987,16 +51987,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -52050,16 +52050,16 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -52100,21 +52100,21 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - label: Atlas CLI @@ -52164,16 +52164,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -52241,16 +52241,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -52303,16 +52303,16 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -52349,16 +52349,16 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -52411,16 +52411,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -52465,16 +52465,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -52517,21 +52517,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -52573,21 +52573,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - label: Atlas CLI @@ -52629,16 +52629,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -52682,16 +52682,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -52743,21 +52743,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - label: Atlas CLI @@ -52853,16 +52853,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -52912,16 +52912,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -52972,16 +52972,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -53033,16 +53033,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search?pretty=true" @@ -53077,16 +53077,16 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -53123,16 +53123,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -53166,16 +53166,16 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -53216,21 +53216,21 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - label: Atlas CLI @@ -53266,16 +53266,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" @@ -53316,21 +53316,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - label: Atlas CLI @@ -53368,16 +53368,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" @@ -53417,16 +53417,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -53475,21 +53475,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - label: Atlas CLI @@ -53531,16 +53531,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" @@ -53588,21 +53588,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - label: Atlas CLI @@ -53646,16 +53646,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" @@ -53692,16 +53692,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -53744,21 +53744,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - label: Atlas CLI @@ -53800,16 +53800,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -53857,21 +53857,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - label: Atlas CLI @@ -53919,16 +53919,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -53976,16 +53976,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -54042,21 +54042,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - label: Atlas CLI @@ -54108,16 +54108,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -54176,21 +54176,21 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - label: Atlas CLI @@ -54245,16 +54245,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -54300,16 +54300,16 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -54349,16 +54349,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -54405,16 +54405,16 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -54467,21 +54467,21 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - label: Atlas CLI @@ -54507,16 +54507,16 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" @@ -54562,21 +54562,21 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - label: Atlas CLI @@ -54618,16 +54618,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -54668,16 +54668,16 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account) + - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer {ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ + curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" From 25cd8cacbe8c66959164b3436f21737b1147bb95 Mon Sep 17 00:00:00 2001 From: andreaangiolillo Date: Wed, 4 Jun 2025 15:44:42 +0200 Subject: [PATCH 3/6] rename env variables --- .../internal/openapi/filter/code_sample.go | 4 +- .../openapi/filter/code_sample_test.go | 12 +- .../data/split/dev/openapi-v2-2023-01-01.json | 1348 +++++++------- .../data/split/dev/openapi-v2-2023-01-01.yaml | 1348 +++++++------- .../data/split/dev/openapi-v2-2023-02-01.json | 1396 +++++++------- .../data/split/dev/openapi-v2-2023-02-01.yaml | 1396 +++++++------- .../data/split/dev/openapi-v2-2023-10-01.json | 1452 +++++++-------- .../data/split/dev/openapi-v2-2023-10-01.yaml | 1452 +++++++-------- .../data/split/dev/openapi-v2-2023-11-15.json | 1504 ++++++++-------- .../data/split/dev/openapi-v2-2023-11-15.yaml | 1504 ++++++++-------- .../data/split/dev/openapi-v2-2024-05-30.json | 1576 ++++++++-------- .../data/split/dev/openapi-v2-2024-05-30.yaml | 1576 ++++++++-------- .../data/split/dev/openapi-v2-2024-08-05.json | 1576 ++++++++-------- .../data/split/dev/openapi-v2-2024-08-05.yaml | 1576 ++++++++-------- .../data/split/dev/openapi-v2-2025-01-01.json | 1600 ++++++++--------- .../data/split/dev/openapi-v2-2025-01-01.yaml | 1600 ++++++++--------- 16 files changed, 10460 insertions(+), 10460 deletions(-) diff --git a/tools/cli/internal/openapi/filter/code_sample.go b/tools/cli/internal/openapi/filter/code_sample.go index c19cf26c4c..f085d9cd40 100644 --- a/tools/cli/internal/openapi/filter/code_sample.go +++ b/tools/cli/internal/openapi/filter/code_sample.go @@ -56,7 +56,7 @@ func (f *CodeSampleFilter) Apply() error { func (f *CodeSampleFilter) newDigestCurlCodeSamplesForOperation(pathName, opMethod string) codeSample { version := apiVersion(f.metadata.targetVersion) - source := "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n " + + source := "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas." + version + "+json\" \\\n " switch opMethod { @@ -79,7 +79,7 @@ func (f *CodeSampleFilter) newDigestCurlCodeSamplesForOperation(pathName, opMeth func (f *CodeSampleFilter) newServiceAccountCurlCodeSamplesForOperation(pathName, opMethod string) codeSample { version := apiVersion(f.metadata.targetVersion) - source := "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n " + + source := "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas." + version + "+json\" \\\n " switch opMethod { diff --git a/tools/cli/internal/openapi/filter/code_sample_test.go b/tools/cli/internal/openapi/filter/code_sample_test.go index a0c99cdf9f..bc1d75788d 100644 --- a/tools/cli/internal/openapi/filter/code_sample_test.go +++ b/tools/cli/internal/openapi/filter/code_sample_test.go @@ -79,13 +79,13 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Service Account Access Token)", - Source: "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n " + + Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n " + + 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/test?pretty=true\"", }, { @@ -148,13 +148,13 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Service Account Access Token)", - Source: "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n " + + Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n " + + Source: "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { @@ -217,13 +217,13 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Service Account Access Token)", - Source: "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n " + + Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n " + + Source: "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { 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 71d231e697..1a6b39b7c4 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,12 +243,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -305,12 +305,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -373,12 +373,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -441,12 +441,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -500,12 +500,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -571,12 +571,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -649,12 +649,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -725,12 +725,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -812,12 +812,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -880,12 +880,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -957,12 +957,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1035,12 +1035,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1114,12 +1114,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1204,12 +1204,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1307,12 +1307,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1386,12 +1386,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1472,12 +1472,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1538,12 +1538,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1609,12 +1609,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1700,12 +1700,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1779,12 +1779,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1844,12 +1844,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -1907,12 +1907,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1987,12 +1987,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2062,12 +2062,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2155,12 +2155,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2235,12 +2235,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2316,12 +2316,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2398,12 +2398,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2469,12 +2469,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2543,12 +2543,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2618,12 +2618,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2694,12 +2694,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2781,12 +2781,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2871,12 +2871,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2958,12 +2958,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3045,12 +3045,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3122,12 +3122,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3212,12 +3212,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3299,12 +3299,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3374,12 +3374,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3445,12 +3445,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3526,12 +3526,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3621,12 +3621,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3707,12 +3707,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3769,12 +3769,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3843,12 +3843,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3905,12 +3905,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3976,12 +3976,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4048,12 +4048,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4129,12 +4129,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4208,12 +4208,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4282,12 +4282,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4349,12 +4349,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4439,12 +4439,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4502,12 +4502,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4577,12 +4577,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4663,12 +4663,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4737,12 +4737,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4830,12 +4830,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4911,12 +4911,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4996,12 +4996,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5087,12 +5087,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5172,12 +5172,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5257,12 +5257,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5346,12 +5346,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5426,12 +5426,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5520,12 +5520,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5604,12 +5604,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5693,12 +5693,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5773,12 +5773,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5856,12 +5856,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5948,12 +5948,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6037,12 +6037,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6121,12 +6121,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6196,12 +6196,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6270,12 +6270,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6358,12 +6358,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6445,12 +6445,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6531,12 +6531,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6617,12 +6617,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6704,12 +6704,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6781,12 +6781,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6870,12 +6870,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6957,12 +6957,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7055,12 +7055,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7152,12 +7152,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7246,12 +7246,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7323,12 +7323,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7412,12 +7412,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7489,12 +7489,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7578,12 +7578,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7662,12 +7662,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7755,12 +7755,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7851,12 +7851,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7952,12 +7952,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8047,12 +8047,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8137,12 +8137,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8244,12 +8244,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8324,12 +8324,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8404,12 +8404,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8496,12 +8496,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8595,12 +8595,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8690,12 +8690,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8871,12 +8871,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8958,12 +8958,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9054,12 +9054,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9168,12 +9168,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9261,12 +9261,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -9355,12 +9355,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9463,12 +9463,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9547,12 +9547,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9629,12 +9629,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9719,12 +9719,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9801,12 +9801,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9897,12 +9897,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9970,12 +9970,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10069,12 +10069,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10156,12 +10156,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10246,12 +10246,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10324,12 +10324,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10401,12 +10401,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10492,12 +10492,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10583,12 +10583,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10659,12 +10659,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10743,12 +10743,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10841,12 +10841,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10931,12 +10931,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11016,12 +11016,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11112,12 +11112,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11186,12 +11186,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11309,12 +11309,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11399,12 +11399,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11482,12 +11482,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11553,12 +11553,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11637,12 +11637,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11710,12 +11710,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11806,12 +11806,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11871,12 +11871,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11954,12 +11954,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12031,12 +12031,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12103,12 +12103,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12195,12 +12195,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12273,12 +12273,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12353,12 +12353,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12424,12 +12424,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12496,12 +12496,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12588,12 +12588,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12665,12 +12665,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12748,12 +12748,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12832,12 +12832,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12930,12 +12930,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13031,12 +13031,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13102,12 +13102,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13337,12 +13337,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13424,12 +13424,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13506,12 +13506,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13608,12 +13608,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13691,12 +13691,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13788,12 +13788,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13916,12 +13916,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14041,12 +14041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14103,12 +14103,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14183,12 +14183,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14257,12 +14257,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14340,12 +14340,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14437,12 +14437,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14521,12 +14521,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14659,12 +14659,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14745,12 +14745,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14810,12 +14810,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14921,12 +14921,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15035,12 +15035,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15141,12 +15141,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15218,12 +15218,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15308,12 +15308,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15396,12 +15396,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15507,12 +15507,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15615,12 +15615,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15690,12 +15690,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15769,12 +15769,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15842,12 +15842,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15915,12 +15915,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15992,12 +15992,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16080,12 +16080,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16146,12 +16146,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16220,12 +16220,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16312,12 +16312,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16405,12 +16405,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16509,12 +16509,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16594,12 +16594,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16680,12 +16680,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16762,12 +16762,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16833,12 +16833,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16904,12 +16904,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16963,12 +16963,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17023,12 +17023,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17094,12 +17094,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17153,12 +17153,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17212,12 +17212,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17274,12 +17274,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17336,12 +17336,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17398,12 +17398,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17521,12 +17521,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17609,12 +17609,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17693,12 +17693,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17770,12 +17770,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17845,12 +17845,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17937,12 +17937,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18002,12 +18002,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18076,12 +18076,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18150,12 +18150,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18225,12 +18225,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18314,12 +18314,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18394,12 +18394,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18490,12 +18490,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18567,12 +18567,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18644,12 +18644,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18740,12 +18740,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18830,12 +18830,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18918,12 +18918,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19006,12 +19006,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19083,12 +19083,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19148,12 +19148,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19222,12 +19222,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19298,12 +19298,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19384,12 +19384,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19469,12 +19469,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19552,12 +19552,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19646,12 +19646,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19726,12 +19726,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19815,12 +19815,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19905,12 +19905,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20014,12 +20014,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20113,12 +20113,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20213,12 +20213,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20280,12 +20280,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20359,12 +20359,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20436,12 +20436,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20510,12 +20510,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20587,12 +20587,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20665,12 +20665,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20736,12 +20736,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20809,12 +20809,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20891,12 +20891,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20973,12 +20973,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21094,12 +21094,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21176,12 +21176,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21255,12 +21255,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21385,12 +21385,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21622,12 +21622,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21713,12 +21713,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21828,12 +21828,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21959,12 +21959,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22027,12 +22027,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22093,12 +22093,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22171,12 +22171,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22249,12 +22249,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22326,12 +22326,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22397,12 +22397,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22468,12 +22468,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22545,12 +22545,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22631,12 +22631,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22723,12 +22723,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22812,12 +22812,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22898,12 +22898,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22985,12 +22985,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23059,12 +23059,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23137,12 +23137,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23217,12 +23217,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23295,12 +23295,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23381,12 +23381,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23449,12 +23449,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23526,12 +23526,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23606,12 +23606,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23693,12 +23693,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23774,12 +23774,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23870,12 +23870,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23932,12 +23932,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24006,12 +24006,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24065,12 +24065,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24127,12 +24127,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24203,12 +24203,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24277,12 +24277,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24366,12 +24366,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24443,12 +24443,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24534,12 +24534,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24619,12 +24619,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24699,12 +24699,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24770,12 +24770,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -24839,12 +24839,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24919,12 +24919,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24994,12 +24994,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25069,12 +25069,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25147,12 +25147,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25223,12 +25223,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25313,12 +25313,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25400,12 +25400,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25501,12 +25501,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25596,12 +25596,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25686,12 +25686,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25759,12 +25759,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25845,12 +25845,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25955,12 +25955,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26041,12 +26041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26109,12 +26109,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26194,12 +26194,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26274,12 +26274,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26351,12 +26351,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26428,12 +26428,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26505,12 +26505,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26580,12 +26580,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26669,12 +26669,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26822,12 +26822,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26887,12 +26887,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26970,12 +26970,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27046,12 +27046,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27114,12 +27114,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27176,12 +27176,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27250,12 +27250,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27318,12 +27318,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27395,12 +27395,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27476,12 +27476,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27560,12 +27560,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27641,12 +27641,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27725,12 +27725,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27807,12 +27807,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27903,12 +27903,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27996,12 +27996,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28095,12 +28095,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28188,12 +28188,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28265,12 +28265,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28345,12 +28345,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28436,12 +28436,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28509,12 +28509,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28581,12 +28581,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28655,12 +28655,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 bf483b9097..6b227f347b 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 @@ -28296,13 +28296,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -28339,13 +28339,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -28383,13 +28383,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -28427,13 +28427,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -28469,13 +28469,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -28516,13 +28516,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -28571,13 +28571,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -28625,13 +28625,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -28686,7 +28686,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ @@ -28694,7 +28694,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -28736,13 +28736,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -28788,7 +28788,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ @@ -28796,7 +28796,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -28846,13 +28846,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -28901,13 +28901,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -28963,7 +28963,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ @@ -28971,7 +28971,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29036,13 +29036,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -29091,13 +29091,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -29154,7 +29154,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ @@ -29162,7 +29162,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29204,13 +29204,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -29250,13 +29250,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -29313,7 +29313,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -29321,7 +29321,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29361,13 +29361,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -29404,13 +29404,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -29458,7 +29458,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ @@ -29466,7 +29466,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29510,13 +29510,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -29570,7 +29570,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ @@ -29578,7 +29578,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29634,13 +29634,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -29690,13 +29690,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -29746,13 +29746,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -29794,13 +29794,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -29847,7 +29847,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ @@ -29855,7 +29855,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29906,13 +29906,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -29962,13 +29962,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -30027,7 +30027,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -30035,7 +30035,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30098,7 +30098,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -30106,7 +30106,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30162,13 +30162,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -30221,13 +30221,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -30277,13 +30277,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -30342,7 +30342,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ @@ -30350,7 +30350,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30406,13 +30406,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -30454,13 +30454,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -30502,7 +30502,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ @@ -30510,7 +30510,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30562,13 +30562,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -30624,7 +30624,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -30632,7 +30632,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30687,7 +30687,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -30695,7 +30695,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30733,13 +30733,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -30783,7 +30783,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ @@ -30791,7 +30791,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30829,13 +30829,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -30877,7 +30877,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ @@ -30885,7 +30885,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30927,13 +30927,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -30983,7 +30983,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ @@ -30991,7 +30991,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31043,13 +31043,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -31096,13 +31096,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -31142,13 +31142,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -31204,7 +31204,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ @@ -31212,7 +31212,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31251,13 +31251,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -31302,7 +31302,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ @@ -31310,7 +31310,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31365,13 +31365,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -31416,13 +31416,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -31480,7 +31480,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ @@ -31488,7 +31488,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31536,13 +31536,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -31594,7 +31594,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ @@ -31602,7 +31602,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31660,13 +31660,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -31716,13 +31716,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -31781,7 +31781,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ @@ -31789,7 +31789,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31840,13 +31840,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -31902,7 +31902,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ @@ -31910,7 +31910,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31962,13 +31962,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -32016,13 +32016,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -32082,7 +32082,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ @@ -32090,7 +32090,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -32148,13 +32148,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -32207,13 +32207,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -32260,13 +32260,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -32312,13 +32312,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -32376,7 +32376,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ @@ -32384,7 +32384,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -32437,13 +32437,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -32499,7 +32499,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ @@ -32507,7 +32507,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -32565,13 +32565,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -32626,13 +32626,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -32694,7 +32694,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ @@ -32702,7 +32702,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -32758,13 +32758,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -32819,13 +32819,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -32872,13 +32872,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -32938,7 +32938,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ @@ -32946,7 +32946,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -33006,7 +33006,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ @@ -33014,7 +33014,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -33063,13 +33063,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -33125,13 +33125,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -33178,13 +33178,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -33240,13 +33240,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -33295,13 +33295,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -33360,13 +33360,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -33426,7 +33426,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ @@ -33434,7 +33434,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -33500,13 +33500,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -33567,13 +33567,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -33631,13 +33631,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -33706,7 +33706,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ @@ -33714,7 +33714,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -33766,13 +33766,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -33822,13 +33822,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -33886,7 +33886,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ @@ -33894,7 +33894,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -33958,13 +33958,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -34024,7 +34024,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ @@ -34032,7 +34032,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -34155,7 +34155,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ @@ -34163,7 +34163,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -34216,13 +34216,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -34282,7 +34282,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ @@ -34290,7 +34290,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -34351,13 +34351,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -34417,13 +34417,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -34492,7 +34492,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ @@ -34500,7 +34500,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -34577,13 +34577,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -34635,13 +34635,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -34692,13 +34692,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -34754,7 +34754,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ @@ -34762,7 +34762,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -34815,13 +34815,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -34882,7 +34882,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ @@ -34890,7 +34890,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -34937,7 +34937,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ @@ -34945,7 +34945,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -35010,13 +35010,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -35070,7 +35070,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ @@ -35078,7 +35078,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -35140,13 +35140,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -35194,13 +35194,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -35248,13 +35248,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -35311,7 +35311,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -35319,7 +35319,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -35378,7 +35378,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -35386,7 +35386,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -35438,13 +35438,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -35499,7 +35499,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ @@ -35507,7 +35507,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -35568,13 +35568,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -35631,13 +35631,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -35691,13 +35691,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -35758,7 +35758,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ @@ -35766,7 +35766,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -35813,13 +35813,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -35900,13 +35900,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -35958,13 +35958,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -36015,7 +36015,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ @@ -36023,7 +36023,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36076,7 +36076,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ @@ -36084,7 +36084,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36138,13 +36138,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -36194,7 +36194,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ @@ -36202,7 +36202,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36256,13 +36256,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -36307,13 +36307,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -36373,7 +36373,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ @@ -36381,7 +36381,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36422,13 +36422,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -36466,13 +36466,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -36522,7 +36522,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ @@ -36530,7 +36530,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36578,13 +36578,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -36627,13 +36627,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -36689,7 +36689,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ @@ -36697,7 +36697,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36746,13 +36746,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -36800,7 +36800,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ @@ -36808,7 +36808,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36852,13 +36852,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -36902,13 +36902,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -36964,7 +36964,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ @@ -36972,7 +36972,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -37020,13 +37020,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -37086,13 +37086,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -37152,13 +37152,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -37228,7 +37228,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ @@ -37236,7 +37236,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -37304,13 +37304,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -37349,13 +37349,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -37496,7 +37496,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ @@ -37504,7 +37504,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -37572,13 +37572,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -37641,13 +37641,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -37723,7 +37723,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ @@ -37731,7 +37731,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -37780,13 +37780,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -37851,7 +37851,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ @@ -37859,7 +37859,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -37943,13 +37943,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -38028,13 +38028,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -38073,13 +38073,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -38139,7 +38139,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ @@ -38147,7 +38147,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -38193,13 +38193,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -38249,7 +38249,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ @@ -38257,7 +38257,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -38319,13 +38319,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -38377,13 +38377,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -38476,13 +38476,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -38538,13 +38538,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -38582,13 +38582,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -38656,13 +38656,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -38729,13 +38729,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -38801,13 +38801,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -38850,13 +38850,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -38914,13 +38914,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -38977,13 +38977,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -39052,7 +39052,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -39060,7 +39060,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39129,7 +39129,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -39137,7 +39137,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39184,13 +39184,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -39238,7 +39238,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -39246,7 +39246,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39292,7 +39292,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -39300,7 +39300,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39348,13 +39348,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -39402,13 +39402,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -39464,7 +39464,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ @@ -39472,7 +39472,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39513,13 +39513,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -39563,13 +39563,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -39645,13 +39645,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -39728,13 +39728,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -39821,7 +39821,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ @@ -39829,7 +39829,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39890,7 +39890,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ @@ -39898,7 +39898,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39942,13 +39942,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -39989,7 +39989,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ @@ -39997,7 +39997,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40051,7 +40051,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ @@ -40059,7 +40059,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40113,13 +40113,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -40154,13 +40154,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -40195,13 +40195,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -40244,7 +40244,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ @@ -40252,7 +40252,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40289,7 +40289,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ @@ -40297,7 +40297,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40334,7 +40334,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ @@ -40342,7 +40342,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40380,13 +40380,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -40422,13 +40422,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -40464,7 +40464,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ @@ -40472,7 +40472,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40551,13 +40551,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -40608,13 +40608,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -40665,7 +40665,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ @@ -40673,7 +40673,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40722,13 +40722,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -40774,13 +40774,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -40837,7 +40837,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ @@ -40845,7 +40845,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40886,13 +40886,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -40937,7 +40937,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ @@ -40945,7 +40945,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40993,13 +40993,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -41045,13 +41045,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -41107,7 +41107,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ @@ -41115,7 +41115,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -41166,13 +41166,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -41229,13 +41229,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -41282,7 +41282,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ @@ -41290,7 +41290,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -41339,7 +41339,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ @@ -41347,7 +41347,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -41406,13 +41406,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -41469,13 +41469,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -41531,13 +41531,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -41591,7 +41591,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ @@ -41599,7 +41599,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -41650,13 +41650,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -41712,13 +41712,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -41775,13 +41775,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -41850,7 +41850,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ @@ -41858,7 +41858,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -41923,13 +41923,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -41993,13 +41993,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -42045,7 +42045,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ @@ -42053,7 +42053,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -42093,13 +42093,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -42143,7 +42143,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ @@ -42151,7 +42151,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -42200,13 +42200,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -42263,7 +42263,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ @@ -42271,7 +42271,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -42327,13 +42327,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -42386,13 +42386,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -42452,7 +42452,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ @@ -42460,7 +42460,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -42502,13 +42502,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -42556,7 +42556,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ @@ -42564,7 +42564,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -42609,13 +42609,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -42678,7 +42678,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ @@ -42686,7 +42686,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -42735,13 +42735,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -42789,13 +42789,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -42834,13 +42834,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -42884,13 +42884,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -42937,13 +42937,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -42993,13 +42993,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -43075,13 +43075,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -43128,13 +43128,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -43183,13 +43183,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -43281,13 +43281,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -43490,13 +43490,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -43560,13 +43560,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -43647,13 +43647,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -43741,13 +43741,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -43787,13 +43787,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -43832,13 +43832,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -43885,7 +43885,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -43893,7 +43893,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -43942,7 +43942,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -43950,7 +43950,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44000,7 +44000,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ @@ -44008,7 +44008,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44054,13 +44054,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -44099,13 +44099,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -44151,7 +44151,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ @@ -44159,7 +44159,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44211,13 +44211,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -44274,7 +44274,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ @@ -44282,7 +44282,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44340,13 +44340,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -44396,13 +44396,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -44458,13 +44458,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -44509,13 +44509,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -44564,7 +44564,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ @@ -44572,7 +44572,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44623,13 +44623,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -44677,13 +44677,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -44736,7 +44736,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ @@ -44744,7 +44744,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44786,13 +44786,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -44838,7 +44838,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ @@ -44846,7 +44846,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44893,13 +44893,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -44952,7 +44952,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ @@ -44960,7 +44960,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45013,13 +45013,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -45079,7 +45079,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ @@ -45087,7 +45087,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45125,13 +45125,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -45178,7 +45178,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ @@ -45186,7 +45186,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45226,13 +45226,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -45268,13 +45268,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -45319,7 +45319,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ @@ -45327,7 +45327,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45374,13 +45374,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -45431,13 +45431,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -45484,13 +45484,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -45546,7 +45546,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ @@ -45554,7 +45554,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45605,13 +45605,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -45660,13 +45660,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -45715,7 +45715,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -45723,7 +45723,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45773,13 +45773,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -45820,13 +45820,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -45874,7 +45874,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ @@ -45882,7 +45882,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45926,13 +45926,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -45977,7 +45977,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ @@ -45985,7 +45985,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46035,13 +46035,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -46088,13 +46088,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -46150,7 +46150,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ @@ -46158,7 +46158,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46211,13 +46211,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -46277,7 +46277,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ @@ -46285,7 +46285,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46347,13 +46347,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -46410,13 +46410,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -46460,7 +46460,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ @@ -46468,7 +46468,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46524,13 +46524,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -46601,13 +46601,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -46663,13 +46663,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -46709,13 +46709,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -46771,13 +46771,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -46825,13 +46825,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -46877,7 +46877,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -46885,7 +46885,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46933,7 +46933,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -46941,7 +46941,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46989,13 +46989,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -47042,13 +47042,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -47103,7 +47103,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ @@ -47111,7 +47111,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -47213,13 +47213,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -47272,13 +47272,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -47332,13 +47332,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -47376,13 +47376,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -47422,13 +47422,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -47465,13 +47465,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -47515,7 +47515,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ @@ -47523,7 +47523,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -47565,13 +47565,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -47617,7 +47617,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ @@ -47625,7 +47625,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -47673,13 +47673,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -47730,7 +47730,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ @@ -47738,7 +47738,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -47792,13 +47792,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -47849,13 +47849,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -47915,7 +47915,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ @@ -47923,7 +47923,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -47981,13 +47981,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -48049,7 +48049,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ @@ -48057,7 +48057,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -48118,13 +48118,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -48173,13 +48173,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -48222,13 +48222,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -48278,13 +48278,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -48340,7 +48340,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ @@ -48348,7 +48348,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -48399,7 +48399,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -48407,7 +48407,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -48455,13 +48455,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -48505,13 +48505,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 558f1e80e6..e96f53ce4c 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,12 +247,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -309,12 +309,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -377,12 +377,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -445,12 +445,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -504,12 +504,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -575,12 +575,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -653,12 +653,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -729,12 +729,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -816,12 +816,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -884,12 +884,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -961,12 +961,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1039,12 +1039,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1118,12 +1118,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1208,12 +1208,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1311,12 +1311,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1390,12 +1390,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1476,12 +1476,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1542,12 +1542,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1613,12 +1613,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1704,12 +1704,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1783,12 +1783,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1848,12 +1848,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -1911,12 +1911,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1991,12 +1991,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2072,12 +2072,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2147,12 +2147,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2240,12 +2240,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2320,12 +2320,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2401,12 +2401,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2483,12 +2483,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2554,12 +2554,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2628,12 +2628,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2703,12 +2703,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2779,12 +2779,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2866,12 +2866,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2956,12 +2956,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3043,12 +3043,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3130,12 +3130,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3207,12 +3207,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3297,12 +3297,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3384,12 +3384,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3459,12 +3459,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3530,12 +3530,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3611,12 +3611,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3706,12 +3706,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3792,12 +3792,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3854,12 +3854,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3928,12 +3928,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3990,12 +3990,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4061,12 +4061,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4133,12 +4133,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4214,12 +4214,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4293,12 +4293,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4367,12 +4367,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4434,12 +4434,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4524,12 +4524,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4587,12 +4587,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4662,12 +4662,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4748,12 +4748,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4822,12 +4822,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4915,12 +4915,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4996,12 +4996,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5081,12 +5081,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5172,12 +5172,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5257,12 +5257,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5342,12 +5342,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5430,12 +5430,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5509,12 +5509,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5603,12 +5603,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5687,12 +5687,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5776,12 +5776,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5856,12 +5856,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5939,12 +5939,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6031,12 +6031,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6120,12 +6120,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6204,12 +6204,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6279,12 +6279,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6353,12 +6353,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6441,12 +6441,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6528,12 +6528,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6614,12 +6614,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6700,12 +6700,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6787,12 +6787,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6864,12 +6864,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6953,12 +6953,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7040,12 +7040,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7138,12 +7138,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7235,12 +7235,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7329,12 +7329,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7406,12 +7406,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7495,12 +7495,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7572,12 +7572,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7661,12 +7661,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7745,12 +7745,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7838,12 +7838,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7934,12 +7934,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8035,12 +8035,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8130,12 +8130,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8220,12 +8220,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8327,12 +8327,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8407,12 +8407,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8487,12 +8487,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8579,12 +8579,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8678,12 +8678,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8773,12 +8773,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8954,12 +8954,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9041,12 +9041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9137,12 +9137,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9251,12 +9251,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9344,12 +9344,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -9438,12 +9438,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9546,12 +9546,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9630,12 +9630,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9712,12 +9712,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9802,12 +9802,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9884,12 +9884,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9980,12 +9980,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10052,12 +10052,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10150,12 +10150,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10237,12 +10237,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10327,12 +10327,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10405,12 +10405,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10482,12 +10482,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10573,12 +10573,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10664,12 +10664,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10740,12 +10740,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10824,12 +10824,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10922,12 +10922,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11012,12 +11012,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11097,12 +11097,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11193,12 +11193,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11267,12 +11267,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11389,12 +11389,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11478,12 +11478,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11561,12 +11561,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11632,12 +11632,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11716,12 +11716,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11789,12 +11789,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11885,12 +11885,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11950,12 +11950,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12033,12 +12033,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12110,12 +12110,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12182,12 +12182,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12274,12 +12274,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12352,12 +12352,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12432,12 +12432,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12503,12 +12503,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12575,12 +12575,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12667,12 +12667,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12744,12 +12744,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12827,12 +12827,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12911,12 +12911,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13009,12 +13009,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13110,12 +13110,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13181,12 +13181,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13416,12 +13416,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13503,12 +13503,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13585,12 +13585,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13687,12 +13687,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13770,12 +13770,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13867,12 +13867,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13995,12 +13995,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14120,12 +14120,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14182,12 +14182,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14262,12 +14262,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14336,12 +14336,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14419,12 +14419,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14516,12 +14516,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14600,12 +14600,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14738,12 +14738,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14824,12 +14824,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14889,12 +14889,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15000,12 +15000,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15114,12 +15114,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15220,12 +15220,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15297,12 +15297,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15387,12 +15387,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15475,12 +15475,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15586,12 +15586,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15694,12 +15694,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15769,12 +15769,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15848,12 +15848,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15921,12 +15921,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15994,12 +15994,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16071,12 +16071,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16159,12 +16159,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16225,12 +16225,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16299,12 +16299,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16391,12 +16391,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16484,12 +16484,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16588,12 +16588,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16673,12 +16673,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16759,12 +16759,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16841,12 +16841,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16912,12 +16912,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16983,12 +16983,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17042,12 +17042,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17102,12 +17102,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17173,12 +17173,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17232,12 +17232,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17291,12 +17291,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17353,12 +17353,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17415,12 +17415,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17477,12 +17477,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17600,12 +17600,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17688,12 +17688,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17772,12 +17772,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17849,12 +17849,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17924,12 +17924,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18016,12 +18016,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18081,12 +18081,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18155,12 +18155,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18229,12 +18229,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18304,12 +18304,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18393,12 +18393,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18473,12 +18473,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18569,12 +18569,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18646,12 +18646,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18723,12 +18723,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18819,12 +18819,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18909,12 +18909,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18997,12 +18997,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19085,12 +19085,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19162,12 +19162,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19227,12 +19227,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19301,12 +19301,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19377,12 +19377,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19463,12 +19463,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19548,12 +19548,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19631,12 +19631,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19725,12 +19725,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19805,12 +19805,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19894,12 +19894,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19984,12 +19984,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20093,12 +20093,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20192,12 +20192,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20292,12 +20292,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20359,12 +20359,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20438,12 +20438,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20515,12 +20515,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20589,12 +20589,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20666,12 +20666,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20744,12 +20744,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20815,12 +20815,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20888,12 +20888,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20970,12 +20970,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21052,12 +21052,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21173,12 +21173,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21255,12 +21255,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21334,12 +21334,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21464,12 +21464,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21701,12 +21701,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21792,12 +21792,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21907,12 +21907,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22038,12 +22038,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22106,12 +22106,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22172,12 +22172,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22250,12 +22250,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22328,12 +22328,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22405,12 +22405,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22476,12 +22476,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22547,12 +22547,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22624,12 +22624,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22710,12 +22710,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22802,12 +22802,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22891,12 +22891,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22977,12 +22977,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23064,12 +23064,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23138,12 +23138,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23216,12 +23216,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23296,12 +23296,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23374,12 +23374,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23460,12 +23460,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23528,12 +23528,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23605,12 +23605,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23673,12 +23673,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23747,12 +23747,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23824,12 +23824,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23904,12 +23904,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23993,12 +23993,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24097,12 +24097,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24177,12 +24177,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24263,12 +24263,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24349,12 +24349,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24427,12 +24427,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24525,12 +24525,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24605,12 +24605,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24692,12 +24692,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24773,12 +24773,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24869,12 +24869,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24931,12 +24931,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25005,12 +25005,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25064,12 +25064,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25126,12 +25126,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25202,12 +25202,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25276,12 +25276,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25365,12 +25365,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25442,12 +25442,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25533,12 +25533,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25618,12 +25618,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25698,12 +25698,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25769,12 +25769,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -25838,12 +25838,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25918,12 +25918,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25993,12 +25993,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26068,12 +26068,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26146,12 +26146,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26222,12 +26222,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26312,12 +26312,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26399,12 +26399,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26500,12 +26500,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26595,12 +26595,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26685,12 +26685,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26758,12 +26758,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26844,12 +26844,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26954,12 +26954,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27040,12 +27040,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27108,12 +27108,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27193,12 +27193,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27273,12 +27273,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27350,12 +27350,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27427,12 +27427,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27504,12 +27504,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27579,12 +27579,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27668,12 +27668,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27821,12 +27821,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27886,12 +27886,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27969,12 +27969,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28045,12 +28045,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28113,12 +28113,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28175,12 +28175,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28249,12 +28249,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28317,12 +28317,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28394,12 +28394,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28475,12 +28475,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28559,12 +28559,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28640,12 +28640,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28724,12 +28724,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28806,12 +28806,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28902,12 +28902,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28995,12 +28995,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29094,12 +29094,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29187,12 +29187,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29264,12 +29264,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29344,12 +29344,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29435,12 +29435,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29508,12 +29508,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29580,12 +29580,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29654,12 +29654,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 e6aeee08fa..8498962522 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 @@ -28660,13 +28660,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -28703,13 +28703,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -28747,13 +28747,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -28791,13 +28791,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -28833,13 +28833,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -28880,13 +28880,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -28935,13 +28935,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -28989,13 +28989,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -29050,7 +29050,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ @@ -29058,7 +29058,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -29100,13 +29100,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -29152,7 +29152,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ @@ -29160,7 +29160,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -29210,13 +29210,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -29265,13 +29265,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -29327,7 +29327,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ @@ -29335,7 +29335,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -29400,13 +29400,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -29455,13 +29455,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -29518,7 +29518,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ @@ -29526,7 +29526,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -29568,13 +29568,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -29614,13 +29614,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -29677,7 +29677,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -29685,7 +29685,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -29725,13 +29725,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -29768,13 +29768,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -29822,7 +29822,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ @@ -29830,7 +29830,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -29880,7 +29880,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ @@ -29888,7 +29888,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -29932,13 +29932,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -29992,7 +29992,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ @@ -30000,7 +30000,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30056,13 +30056,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -30112,13 +30112,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -30168,13 +30168,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -30216,13 +30216,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -30269,7 +30269,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ @@ -30277,7 +30277,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30328,13 +30328,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -30384,13 +30384,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -30449,7 +30449,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -30457,7 +30457,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30520,7 +30520,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -30528,7 +30528,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30584,13 +30584,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -30643,13 +30643,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -30699,13 +30699,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -30764,7 +30764,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ @@ -30772,7 +30772,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30828,13 +30828,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -30876,13 +30876,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -30924,7 +30924,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ @@ -30932,7 +30932,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30984,13 +30984,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -31046,7 +31046,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -31054,7 +31054,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31109,7 +31109,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -31117,7 +31117,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31155,13 +31155,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -31205,7 +31205,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ @@ -31213,7 +31213,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31251,13 +31251,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -31299,7 +31299,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ @@ -31307,7 +31307,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31349,13 +31349,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -31405,7 +31405,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ @@ -31413,7 +31413,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31465,13 +31465,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -31518,13 +31518,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -31564,13 +31564,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -31626,7 +31626,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ @@ -31634,7 +31634,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31673,13 +31673,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -31724,7 +31724,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ @@ -31732,7 +31732,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31787,13 +31787,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -31838,13 +31838,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -31902,7 +31902,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ @@ -31910,7 +31910,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31958,13 +31958,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -32016,7 +32016,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ @@ -32024,7 +32024,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32081,13 +32081,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -32136,13 +32136,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -32201,7 +32201,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ @@ -32209,7 +32209,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32260,13 +32260,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -32322,7 +32322,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ @@ -32330,7 +32330,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32382,13 +32382,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -32436,13 +32436,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -32502,7 +32502,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ @@ -32510,7 +32510,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32568,13 +32568,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -32627,13 +32627,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -32680,13 +32680,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -32732,13 +32732,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -32796,7 +32796,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ @@ -32804,7 +32804,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32857,13 +32857,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -32919,7 +32919,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ @@ -32927,7 +32927,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32985,13 +32985,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -33046,13 +33046,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -33114,7 +33114,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ @@ -33122,7 +33122,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -33178,13 +33178,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -33239,13 +33239,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -33292,13 +33292,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -33358,7 +33358,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ @@ -33366,7 +33366,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -33426,7 +33426,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ @@ -33434,7 +33434,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -33483,13 +33483,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -33545,13 +33545,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -33598,13 +33598,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -33660,13 +33660,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -33715,13 +33715,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -33780,13 +33780,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -33846,7 +33846,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ @@ -33854,7 +33854,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -33920,13 +33920,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -33987,13 +33987,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -34051,13 +34051,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -34126,7 +34126,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ @@ -34134,7 +34134,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -34186,13 +34186,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -34242,13 +34242,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -34306,7 +34306,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ @@ -34314,7 +34314,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -34378,13 +34378,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -34444,7 +34444,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ @@ -34452,7 +34452,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -34575,7 +34575,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ @@ -34583,7 +34583,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -34636,13 +34636,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -34702,7 +34702,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ @@ -34710,7 +34710,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -34771,13 +34771,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -34837,13 +34837,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -34912,7 +34912,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ @@ -34920,7 +34920,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -34997,13 +34997,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -35055,13 +35055,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -35112,13 +35112,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -35174,7 +35174,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ @@ -35182,7 +35182,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35235,13 +35235,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -35302,7 +35302,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ @@ -35310,7 +35310,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35356,7 +35356,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ @@ -35364,7 +35364,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35428,13 +35428,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -35488,7 +35488,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ @@ -35496,7 +35496,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35558,13 +35558,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -35612,13 +35612,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -35666,13 +35666,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -35729,7 +35729,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -35737,7 +35737,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35796,7 +35796,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -35804,7 +35804,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35856,13 +35856,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -35917,7 +35917,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ @@ -35925,7 +35925,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35986,13 +35986,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -36049,13 +36049,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -36109,13 +36109,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -36176,7 +36176,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ @@ -36184,7 +36184,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -36231,13 +36231,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -36317,13 +36317,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -36374,13 +36374,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -36431,7 +36431,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ @@ -36439,7 +36439,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -36492,7 +36492,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ @@ -36500,7 +36500,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -36554,13 +36554,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -36610,7 +36610,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ @@ -36618,7 +36618,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -36672,13 +36672,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -36723,13 +36723,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -36789,7 +36789,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ @@ -36797,7 +36797,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -36838,13 +36838,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -36882,13 +36882,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -36938,7 +36938,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ @@ -36946,7 +36946,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -36994,13 +36994,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -37043,13 +37043,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -37105,7 +37105,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ @@ -37113,7 +37113,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -37162,13 +37162,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -37216,7 +37216,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ @@ -37224,7 +37224,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -37268,13 +37268,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -37318,13 +37318,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -37380,7 +37380,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ @@ -37388,7 +37388,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -37436,13 +37436,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -37502,13 +37502,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -37568,13 +37568,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -37644,7 +37644,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ @@ -37652,7 +37652,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -37720,13 +37720,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -37765,13 +37765,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -37912,7 +37912,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ @@ -37920,7 +37920,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -37988,13 +37988,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -38057,13 +38057,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -38139,7 +38139,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ @@ -38147,7 +38147,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -38196,13 +38196,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -38267,7 +38267,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ @@ -38275,7 +38275,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -38359,13 +38359,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -38444,13 +38444,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -38489,13 +38489,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -38555,7 +38555,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ @@ -38563,7 +38563,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -38609,13 +38609,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -38665,7 +38665,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ @@ -38673,7 +38673,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -38735,13 +38735,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -38793,13 +38793,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -38892,13 +38892,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -38954,13 +38954,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -38998,13 +38998,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -39072,13 +39072,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -39145,13 +39145,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -39217,13 +39217,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -39266,13 +39266,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -39330,13 +39330,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -39393,13 +39393,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -39468,7 +39468,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -39476,7 +39476,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -39545,7 +39545,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -39553,7 +39553,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -39600,13 +39600,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -39654,7 +39654,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -39662,7 +39662,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -39708,7 +39708,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -39716,7 +39716,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -39764,13 +39764,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -39818,13 +39818,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -39880,7 +39880,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ @@ -39888,7 +39888,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -39929,13 +39929,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -39979,13 +39979,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -40061,13 +40061,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -40144,13 +40144,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -40237,7 +40237,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ @@ -40245,7 +40245,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40306,7 +40306,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ @@ -40314,7 +40314,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40358,13 +40358,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -40405,7 +40405,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ @@ -40413,7 +40413,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40467,7 +40467,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ @@ -40475,7 +40475,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40529,13 +40529,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -40570,13 +40570,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -40611,13 +40611,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -40660,7 +40660,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ @@ -40668,7 +40668,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40705,7 +40705,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ @@ -40713,7 +40713,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40750,7 +40750,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ @@ -40758,7 +40758,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40796,13 +40796,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -40838,13 +40838,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -40880,7 +40880,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ @@ -40888,7 +40888,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40967,13 +40967,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -41024,13 +41024,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -41081,7 +41081,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ @@ -41089,7 +41089,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -41138,13 +41138,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -41190,13 +41190,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -41253,7 +41253,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ @@ -41261,7 +41261,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -41302,13 +41302,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -41353,7 +41353,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ @@ -41361,7 +41361,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -41409,13 +41409,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -41461,13 +41461,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -41523,7 +41523,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ @@ -41531,7 +41531,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -41582,13 +41582,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -41645,13 +41645,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -41698,7 +41698,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ @@ -41706,7 +41706,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -41755,7 +41755,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ @@ -41763,7 +41763,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -41822,13 +41822,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -41885,13 +41885,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -41947,13 +41947,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -42007,7 +42007,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ @@ -42015,7 +42015,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -42066,13 +42066,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -42128,13 +42128,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -42191,13 +42191,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -42266,7 +42266,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ @@ -42274,7 +42274,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -42339,13 +42339,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -42409,13 +42409,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -42461,7 +42461,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ @@ -42469,7 +42469,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -42509,13 +42509,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -42559,7 +42559,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ @@ -42567,7 +42567,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -42616,13 +42616,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -42679,7 +42679,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ @@ -42687,7 +42687,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -42743,13 +42743,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -42802,13 +42802,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -42868,7 +42868,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ @@ -42876,7 +42876,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -42918,13 +42918,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -42972,7 +42972,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ @@ -42980,7 +42980,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -43025,13 +43025,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -43094,7 +43094,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ @@ -43102,7 +43102,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -43151,13 +43151,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -43205,13 +43205,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -43250,13 +43250,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -43300,13 +43300,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -43353,13 +43353,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -43409,13 +43409,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -43491,13 +43491,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -43544,13 +43544,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -43599,13 +43599,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -43697,13 +43697,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -43906,13 +43906,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -43976,13 +43976,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -44063,13 +44063,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -44157,13 +44157,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -44203,13 +44203,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -44248,13 +44248,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -44301,7 +44301,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -44309,7 +44309,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -44358,7 +44358,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -44366,7 +44366,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -44416,7 +44416,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ @@ -44424,7 +44424,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -44470,13 +44470,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -44515,13 +44515,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -44567,7 +44567,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ @@ -44575,7 +44575,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -44627,13 +44627,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -44690,7 +44690,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ @@ -44698,7 +44698,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -44756,13 +44756,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -44812,13 +44812,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -44874,13 +44874,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -44925,13 +44925,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -44980,7 +44980,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ @@ -44988,7 +44988,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45039,13 +45039,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -45093,13 +45093,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -45152,7 +45152,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ @@ -45160,7 +45160,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45202,13 +45202,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -45254,7 +45254,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ @@ -45262,7 +45262,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45302,13 +45302,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -45352,7 +45352,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ @@ -45360,7 +45360,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45408,13 +45408,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -45463,13 +45463,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -45523,7 +45523,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ @@ -45531,7 +45531,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45600,13 +45600,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -45652,13 +45652,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -45710,7 +45710,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ @@ -45718,7 +45718,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45772,13 +45772,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -45826,13 +45826,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -45892,7 +45892,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ @@ -45900,7 +45900,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45947,13 +45947,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -46006,7 +46006,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ @@ -46014,7 +46014,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46067,13 +46067,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -46133,7 +46133,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ @@ -46141,7 +46141,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46179,13 +46179,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -46232,7 +46232,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ @@ -46240,7 +46240,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46280,13 +46280,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -46322,13 +46322,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -46373,7 +46373,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ @@ -46381,7 +46381,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46428,13 +46428,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -46485,13 +46485,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -46538,13 +46538,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -46600,7 +46600,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ @@ -46608,7 +46608,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46659,13 +46659,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -46714,13 +46714,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -46769,7 +46769,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -46777,7 +46777,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46827,13 +46827,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -46874,13 +46874,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -46928,7 +46928,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ @@ -46936,7 +46936,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46980,13 +46980,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -47031,7 +47031,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ @@ -47039,7 +47039,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -47089,13 +47089,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -47142,13 +47142,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -47204,7 +47204,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ @@ -47212,7 +47212,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -47265,13 +47265,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -47331,7 +47331,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ @@ -47339,7 +47339,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -47401,13 +47401,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -47464,13 +47464,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -47514,7 +47514,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ @@ -47522,7 +47522,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -47578,13 +47578,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -47655,13 +47655,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -47717,13 +47717,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -47763,13 +47763,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -47825,13 +47825,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -47879,13 +47879,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -47931,7 +47931,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -47939,7 +47939,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -47987,7 +47987,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -47995,7 +47995,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -48043,13 +48043,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -48096,13 +48096,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -48157,7 +48157,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ @@ -48165,7 +48165,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -48267,13 +48267,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -48326,13 +48326,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -48386,13 +48386,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -48430,13 +48430,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -48476,13 +48476,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -48519,13 +48519,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -48569,7 +48569,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ @@ -48577,7 +48577,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -48619,13 +48619,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -48671,7 +48671,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ @@ -48679,7 +48679,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -48727,13 +48727,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -48784,7 +48784,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ @@ -48792,7 +48792,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -48846,13 +48846,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -48903,13 +48903,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -48969,7 +48969,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ @@ -48977,7 +48977,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -49035,13 +49035,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -49103,7 +49103,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ @@ -49111,7 +49111,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -49172,13 +49172,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -49227,13 +49227,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -49276,13 +49276,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -49332,13 +49332,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -49394,7 +49394,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ @@ -49402,7 +49402,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -49453,7 +49453,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -49461,7 +49461,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -49509,13 +49509,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -49559,13 +49559,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 7b886e0fb8..b6d633501f 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,12 +247,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -309,12 +309,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -377,12 +377,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -445,12 +445,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -504,12 +504,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -575,12 +575,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -653,12 +653,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -729,12 +729,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -816,12 +816,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -884,12 +884,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -961,12 +961,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1039,12 +1039,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1118,12 +1118,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1208,12 +1208,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1311,12 +1311,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1390,12 +1390,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1476,12 +1476,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1542,12 +1542,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1613,12 +1613,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1704,12 +1704,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1783,12 +1783,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1848,12 +1848,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -1911,12 +1911,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1991,12 +1991,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2072,12 +2072,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2147,12 +2147,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2240,12 +2240,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2320,12 +2320,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2401,12 +2401,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2483,12 +2483,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2554,12 +2554,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2628,12 +2628,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2703,12 +2703,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2779,12 +2779,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2866,12 +2866,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2956,12 +2956,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3043,12 +3043,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3130,12 +3130,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3207,12 +3207,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3297,12 +3297,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3384,12 +3384,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3459,12 +3459,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3530,12 +3530,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3611,12 +3611,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3706,12 +3706,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3792,12 +3792,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3854,12 +3854,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3928,12 +3928,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3990,12 +3990,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4061,12 +4061,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4133,12 +4133,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4214,12 +4214,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4293,12 +4293,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4367,12 +4367,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4433,12 +4433,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4520,12 +4520,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4582,12 +4582,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4657,12 +4657,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4743,12 +4743,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4817,12 +4817,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4910,12 +4910,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4991,12 +4991,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5076,12 +5076,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5167,12 +5167,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5252,12 +5252,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5337,12 +5337,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5425,12 +5425,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5504,12 +5504,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5598,12 +5598,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5682,12 +5682,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5771,12 +5771,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5851,12 +5851,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5934,12 +5934,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6026,12 +6026,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6115,12 +6115,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6199,12 +6199,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6274,12 +6274,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6348,12 +6348,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6436,12 +6436,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6523,12 +6523,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6609,12 +6609,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6695,12 +6695,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6782,12 +6782,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6859,12 +6859,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6948,12 +6948,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7035,12 +7035,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7133,12 +7133,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7230,12 +7230,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7324,12 +7324,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7401,12 +7401,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7490,12 +7490,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7567,12 +7567,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7656,12 +7656,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7740,12 +7740,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7833,12 +7833,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7929,12 +7929,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8030,12 +8030,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8125,12 +8125,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8215,12 +8215,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8322,12 +8322,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8402,12 +8402,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8482,12 +8482,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8574,12 +8574,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8673,12 +8673,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8768,12 +8768,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8949,12 +8949,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9036,12 +9036,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9132,12 +9132,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9246,12 +9246,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9339,12 +9339,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -9433,12 +9433,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9541,12 +9541,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9625,12 +9625,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9707,12 +9707,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9797,12 +9797,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9879,12 +9879,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9975,12 +9975,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10047,12 +10047,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10145,12 +10145,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10232,12 +10232,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10322,12 +10322,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10400,12 +10400,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10477,12 +10477,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10568,12 +10568,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10659,12 +10659,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10735,12 +10735,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10819,12 +10819,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10917,12 +10917,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11007,12 +11007,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11092,12 +11092,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11188,12 +11188,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11262,12 +11262,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11384,12 +11384,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11473,12 +11473,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11556,12 +11556,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11627,12 +11627,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11711,12 +11711,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11784,12 +11784,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11880,12 +11880,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11945,12 +11945,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12028,12 +12028,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12105,12 +12105,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12177,12 +12177,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12269,12 +12269,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12347,12 +12347,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12427,12 +12427,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12498,12 +12498,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12570,12 +12570,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12662,12 +12662,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12739,12 +12739,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12822,12 +12822,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12906,12 +12906,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13004,12 +13004,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13105,12 +13105,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13176,12 +13176,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13411,12 +13411,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13498,12 +13498,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13580,12 +13580,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13682,12 +13682,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13765,12 +13765,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13862,12 +13862,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13990,12 +13990,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14115,12 +14115,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14177,12 +14177,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14257,12 +14257,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14331,12 +14331,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14414,12 +14414,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14511,12 +14511,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14595,12 +14595,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14733,12 +14733,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14819,12 +14819,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14884,12 +14884,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14995,12 +14995,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15109,12 +15109,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15215,12 +15215,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15292,12 +15292,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15382,12 +15382,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15470,12 +15470,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15581,12 +15581,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15689,12 +15689,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15764,12 +15764,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15843,12 +15843,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15916,12 +15916,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15989,12 +15989,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16066,12 +16066,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16154,12 +16154,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16220,12 +16220,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16294,12 +16294,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16386,12 +16386,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16479,12 +16479,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16583,12 +16583,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16668,12 +16668,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16754,12 +16754,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16836,12 +16836,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16907,12 +16907,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16978,12 +16978,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17037,12 +17037,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17097,12 +17097,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17168,12 +17168,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17227,12 +17227,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17286,12 +17286,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17348,12 +17348,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17410,12 +17410,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17472,12 +17472,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17595,12 +17595,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17683,12 +17683,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17767,12 +17767,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17844,12 +17844,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17919,12 +17919,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18011,12 +18011,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18076,12 +18076,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18150,12 +18150,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18224,12 +18224,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18299,12 +18299,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18388,12 +18388,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18468,12 +18468,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18564,12 +18564,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18641,12 +18641,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18718,12 +18718,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18814,12 +18814,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18904,12 +18904,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18992,12 +18992,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19080,12 +19080,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19157,12 +19157,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19222,12 +19222,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19296,12 +19296,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19372,12 +19372,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19458,12 +19458,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19543,12 +19543,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19626,12 +19626,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19720,12 +19720,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19800,12 +19800,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19889,12 +19889,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19979,12 +19979,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20088,12 +20088,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20187,12 +20187,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20287,12 +20287,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20354,12 +20354,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20433,12 +20433,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20510,12 +20510,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20584,12 +20584,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20661,12 +20661,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20739,12 +20739,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20810,12 +20810,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20883,12 +20883,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20965,12 +20965,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21047,12 +21047,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21168,12 +21168,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21250,12 +21250,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21329,12 +21329,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21459,12 +21459,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21696,12 +21696,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21787,12 +21787,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21902,12 +21902,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22033,12 +22033,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22101,12 +22101,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22167,12 +22167,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22245,12 +22245,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22323,12 +22323,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22400,12 +22400,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22471,12 +22471,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22542,12 +22542,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22619,12 +22619,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22705,12 +22705,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22797,12 +22797,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22886,12 +22886,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22972,12 +22972,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23059,12 +23059,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23133,12 +23133,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23211,12 +23211,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23291,12 +23291,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23369,12 +23369,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23455,12 +23455,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23526,12 +23526,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23601,12 +23601,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23676,12 +23676,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -23748,12 +23748,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23834,12 +23834,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23922,12 +23922,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23990,12 +23990,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24067,12 +24067,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24135,12 +24135,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24209,12 +24209,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24286,12 +24286,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24366,12 +24366,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24455,12 +24455,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24559,12 +24559,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24639,12 +24639,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24725,12 +24725,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24811,12 +24811,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24889,12 +24889,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24987,12 +24987,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25067,12 +25067,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25154,12 +25154,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25235,12 +25235,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25331,12 +25331,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25393,12 +25393,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25467,12 +25467,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25526,12 +25526,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25588,12 +25588,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25664,12 +25664,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25738,12 +25738,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25827,12 +25827,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25904,12 +25904,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25995,12 +25995,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26080,12 +26080,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26160,12 +26160,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26231,12 +26231,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -26300,12 +26300,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26380,12 +26380,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26455,12 +26455,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26530,12 +26530,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26608,12 +26608,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26684,12 +26684,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26774,12 +26774,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26861,12 +26861,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26962,12 +26962,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27057,12 +27057,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27147,12 +27147,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27220,12 +27220,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27306,12 +27306,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27416,12 +27416,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27502,12 +27502,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27570,12 +27570,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27655,12 +27655,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27735,12 +27735,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27812,12 +27812,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27889,12 +27889,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27966,12 +27966,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28041,12 +28041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28130,12 +28130,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28283,12 +28283,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28348,12 +28348,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28431,12 +28431,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28507,12 +28507,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28575,12 +28575,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28637,12 +28637,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28711,12 +28711,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28782,12 +28782,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28856,12 +28856,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28927,12 +28927,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28999,12 +28999,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29085,12 +29085,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29165,12 +29165,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29250,12 +29250,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29330,12 +29330,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29398,12 +29398,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29475,12 +29475,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29556,12 +29556,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29640,12 +29640,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29721,12 +29721,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29805,12 +29805,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29887,12 +29887,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29983,12 +29983,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30076,12 +30076,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30175,12 +30175,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30268,12 +30268,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30345,12 +30345,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30425,12 +30425,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30516,12 +30516,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30589,12 +30589,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30661,12 +30661,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30735,12 +30735,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 36d31b8f1f..8093c4abe4 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 @@ -29081,13 +29081,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -29124,13 +29124,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -29168,13 +29168,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -29212,13 +29212,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -29254,13 +29254,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -29301,13 +29301,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -29356,13 +29356,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -29410,13 +29410,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -29471,7 +29471,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ @@ -29479,7 +29479,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -29521,13 +29521,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -29573,7 +29573,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ @@ -29581,7 +29581,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -29631,13 +29631,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -29686,13 +29686,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -29748,7 +29748,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ @@ -29756,7 +29756,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -29821,13 +29821,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -29876,13 +29876,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -29939,7 +29939,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ @@ -29947,7 +29947,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -29989,13 +29989,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -30035,13 +30035,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -30098,7 +30098,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -30106,7 +30106,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -30146,13 +30146,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -30189,13 +30189,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -30243,7 +30243,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ @@ -30251,7 +30251,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -30301,7 +30301,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ @@ -30309,7 +30309,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -30353,13 +30353,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -30413,7 +30413,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ @@ -30421,7 +30421,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -30477,13 +30477,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -30533,13 +30533,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -30589,13 +30589,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -30637,13 +30637,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -30690,7 +30690,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ @@ -30698,7 +30698,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -30749,13 +30749,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -30805,13 +30805,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -30870,7 +30870,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -30878,7 +30878,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -30941,7 +30941,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -30949,7 +30949,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31005,13 +31005,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -31064,13 +31064,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -31120,13 +31120,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -31185,7 +31185,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ @@ -31193,7 +31193,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31249,13 +31249,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -31297,13 +31297,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -31345,7 +31345,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ @@ -31353,7 +31353,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31405,13 +31405,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -31467,7 +31467,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -31475,7 +31475,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31530,7 +31530,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -31538,7 +31538,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31576,13 +31576,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -31626,7 +31626,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ @@ -31634,7 +31634,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31672,13 +31672,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -31720,7 +31720,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ @@ -31728,7 +31728,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31770,13 +31770,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -31826,7 +31826,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ @@ -31834,7 +31834,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31886,13 +31886,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -31939,13 +31939,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -31984,13 +31984,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -32043,7 +32043,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ @@ -32051,7 +32051,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32089,13 +32089,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -32140,7 +32140,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ @@ -32148,7 +32148,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32203,13 +32203,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -32254,13 +32254,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -32318,7 +32318,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ @@ -32326,7 +32326,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32374,13 +32374,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -32432,7 +32432,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ @@ -32440,7 +32440,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32497,13 +32497,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -32552,13 +32552,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -32617,7 +32617,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ @@ -32625,7 +32625,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32676,13 +32676,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -32738,7 +32738,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ @@ -32746,7 +32746,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32798,13 +32798,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -32852,13 +32852,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -32918,7 +32918,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ @@ -32926,7 +32926,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32984,13 +32984,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -33043,13 +33043,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -33096,13 +33096,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -33148,13 +33148,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -33212,7 +33212,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ @@ -33220,7 +33220,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -33273,13 +33273,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -33335,7 +33335,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ @@ -33343,7 +33343,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -33401,13 +33401,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -33462,13 +33462,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -33530,7 +33530,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ @@ -33538,7 +33538,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -33594,13 +33594,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -33655,13 +33655,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -33708,13 +33708,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -33774,7 +33774,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ @@ -33782,7 +33782,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -33842,7 +33842,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ @@ -33850,7 +33850,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -33899,13 +33899,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -33961,13 +33961,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -34014,13 +34014,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -34076,13 +34076,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -34131,13 +34131,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -34196,13 +34196,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -34262,7 +34262,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ @@ -34270,7 +34270,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -34336,13 +34336,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -34403,13 +34403,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -34467,13 +34467,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -34542,7 +34542,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ @@ -34550,7 +34550,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -34602,13 +34602,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -34658,13 +34658,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -34722,7 +34722,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ @@ -34730,7 +34730,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -34794,13 +34794,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -34860,7 +34860,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ @@ -34868,7 +34868,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -34991,7 +34991,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ @@ -34999,7 +34999,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -35052,13 +35052,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -35118,7 +35118,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ @@ -35126,7 +35126,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -35187,13 +35187,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -35253,13 +35253,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -35328,7 +35328,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ @@ -35336,7 +35336,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -35413,13 +35413,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -35471,13 +35471,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -35528,13 +35528,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -35590,7 +35590,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ @@ -35598,7 +35598,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -35651,13 +35651,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -35718,7 +35718,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ @@ -35726,7 +35726,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -35772,7 +35772,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ @@ -35780,7 +35780,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -35844,13 +35844,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -35904,7 +35904,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ @@ -35912,7 +35912,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -35974,13 +35974,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -36028,13 +36028,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -36082,13 +36082,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -36145,7 +36145,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -36153,7 +36153,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -36212,7 +36212,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -36220,7 +36220,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -36272,13 +36272,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -36333,7 +36333,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ @@ -36341,7 +36341,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -36402,13 +36402,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -36465,13 +36465,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -36525,13 +36525,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -36592,7 +36592,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ @@ -36600,7 +36600,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -36647,13 +36647,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -36733,13 +36733,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -36790,13 +36790,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -36847,7 +36847,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ @@ -36855,7 +36855,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -36908,7 +36908,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ @@ -36916,7 +36916,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -36970,13 +36970,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -37026,7 +37026,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ @@ -37034,7 +37034,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -37088,13 +37088,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -37139,13 +37139,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -37205,7 +37205,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ @@ -37213,7 +37213,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -37254,13 +37254,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -37298,13 +37298,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -37354,7 +37354,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ @@ -37362,7 +37362,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -37410,13 +37410,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -37459,13 +37459,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -37521,7 +37521,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ @@ -37529,7 +37529,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -37578,13 +37578,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -37632,7 +37632,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ @@ -37640,7 +37640,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -37684,13 +37684,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -37734,13 +37734,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -37796,7 +37796,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ @@ -37804,7 +37804,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -37852,13 +37852,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -37918,13 +37918,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -37984,13 +37984,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -38060,7 +38060,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ @@ -38068,7 +38068,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -38136,13 +38136,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -38181,13 +38181,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -38328,7 +38328,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ @@ -38336,7 +38336,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -38404,13 +38404,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -38473,13 +38473,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -38555,7 +38555,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ @@ -38563,7 +38563,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -38612,13 +38612,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -38683,7 +38683,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ @@ -38691,7 +38691,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -38775,13 +38775,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -38860,13 +38860,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -38905,13 +38905,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -38971,7 +38971,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ @@ -38979,7 +38979,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -39025,13 +39025,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -39081,7 +39081,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ @@ -39089,7 +39089,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -39151,13 +39151,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -39209,13 +39209,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -39308,13 +39308,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -39370,13 +39370,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -39414,13 +39414,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -39488,13 +39488,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -39561,13 +39561,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -39633,13 +39633,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -39682,13 +39682,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -39746,13 +39746,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -39809,13 +39809,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -39884,7 +39884,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -39892,7 +39892,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -39961,7 +39961,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -39969,7 +39969,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40016,13 +40016,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -40070,7 +40070,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -40078,7 +40078,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40124,7 +40124,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -40132,7 +40132,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40180,13 +40180,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -40234,13 +40234,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -40296,7 +40296,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ @@ -40304,7 +40304,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40345,13 +40345,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -40395,13 +40395,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -40477,13 +40477,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -40560,13 +40560,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -40653,7 +40653,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ @@ -40661,7 +40661,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40722,7 +40722,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ @@ -40730,7 +40730,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40774,13 +40774,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -40821,7 +40821,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ @@ -40829,7 +40829,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40883,7 +40883,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ @@ -40891,7 +40891,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40945,13 +40945,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -40986,13 +40986,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -41027,13 +41027,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -41076,7 +41076,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ @@ -41084,7 +41084,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41121,7 +41121,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ @@ -41129,7 +41129,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41166,7 +41166,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ @@ -41174,7 +41174,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41212,13 +41212,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -41254,13 +41254,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -41296,7 +41296,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ @@ -41304,7 +41304,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41383,13 +41383,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -41440,13 +41440,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -41497,7 +41497,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ @@ -41505,7 +41505,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41554,13 +41554,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -41606,13 +41606,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -41669,7 +41669,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ @@ -41677,7 +41677,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41718,13 +41718,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -41769,7 +41769,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ @@ -41777,7 +41777,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41825,13 +41825,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -41877,13 +41877,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -41939,7 +41939,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ @@ -41947,7 +41947,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41998,13 +41998,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -42061,13 +42061,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -42114,7 +42114,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ @@ -42122,7 +42122,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -42171,7 +42171,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ @@ -42179,7 +42179,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -42238,13 +42238,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -42301,13 +42301,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -42363,13 +42363,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -42423,7 +42423,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ @@ -42431,7 +42431,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -42482,13 +42482,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -42544,13 +42544,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -42607,13 +42607,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -42682,7 +42682,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ @@ -42690,7 +42690,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -42755,13 +42755,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -42825,13 +42825,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -42877,7 +42877,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ @@ -42885,7 +42885,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -42925,13 +42925,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -42975,7 +42975,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ @@ -42983,7 +42983,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -43032,13 +43032,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -43095,7 +43095,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ @@ -43103,7 +43103,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -43159,13 +43159,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -43218,13 +43218,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -43284,7 +43284,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ @@ -43292,7 +43292,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -43334,13 +43334,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -43388,7 +43388,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ @@ -43396,7 +43396,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -43441,13 +43441,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -43510,7 +43510,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ @@ -43518,7 +43518,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -43567,13 +43567,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -43621,13 +43621,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -43666,13 +43666,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -43716,13 +43716,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -43769,13 +43769,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -43825,13 +43825,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -43907,13 +43907,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -43960,13 +43960,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -44015,13 +44015,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -44113,13 +44113,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -44322,13 +44322,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -44392,13 +44392,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -44479,13 +44479,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -44573,13 +44573,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -44619,13 +44619,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -44664,13 +44664,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -44717,7 +44717,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -44725,7 +44725,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -44774,7 +44774,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -44782,7 +44782,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -44832,7 +44832,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ @@ -44840,7 +44840,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -44886,13 +44886,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -44931,13 +44931,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -44983,7 +44983,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ @@ -44991,7 +44991,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45043,13 +45043,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -45106,7 +45106,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ @@ -45114,7 +45114,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45172,13 +45172,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -45228,13 +45228,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -45290,13 +45290,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -45341,13 +45341,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -45396,7 +45396,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ @@ -45404,7 +45404,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45455,13 +45455,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -45509,13 +45509,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -45568,7 +45568,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ @@ -45576,7 +45576,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45618,13 +45618,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" @@ -45669,7 +45669,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ @@ -45677,7 +45677,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45724,13 +45724,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" @@ -45773,13 +45773,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -45831,7 +45831,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ @@ -45839,7 +45839,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45895,7 +45895,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ @@ -45903,7 +45903,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45945,13 +45945,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -45997,7 +45997,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ @@ -46005,7 +46005,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46045,13 +46045,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -46095,7 +46095,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ @@ -46103,7 +46103,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46151,13 +46151,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -46206,13 +46206,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -46266,7 +46266,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ @@ -46274,7 +46274,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46343,13 +46343,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -46395,13 +46395,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -46453,7 +46453,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ @@ -46461,7 +46461,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46515,13 +46515,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -46569,13 +46569,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -46635,7 +46635,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ @@ -46643,7 +46643,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46690,13 +46690,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -46749,7 +46749,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ @@ -46757,7 +46757,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46810,13 +46810,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -46876,7 +46876,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ @@ -46884,7 +46884,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46922,13 +46922,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -46975,7 +46975,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ @@ -46983,7 +46983,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -47023,13 +47023,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -47065,13 +47065,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -47116,7 +47116,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ @@ -47124,7 +47124,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -47171,13 +47171,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -47228,13 +47228,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -47281,13 +47281,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -47343,7 +47343,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ @@ -47351,7 +47351,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -47402,13 +47402,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -47457,13 +47457,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -47512,7 +47512,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -47520,7 +47520,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -47570,13 +47570,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -47617,13 +47617,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -47671,7 +47671,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ @@ -47679,7 +47679,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -47723,13 +47723,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -47774,7 +47774,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ @@ -47782,7 +47782,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -47832,13 +47832,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -47885,13 +47885,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -47947,7 +47947,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ @@ -47955,7 +47955,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -48008,13 +48008,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -48074,7 +48074,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ @@ -48082,7 +48082,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -48144,13 +48144,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -48207,13 +48207,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -48257,7 +48257,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ @@ -48265,7 +48265,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -48321,13 +48321,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -48398,13 +48398,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -48460,13 +48460,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -48506,13 +48506,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -48568,13 +48568,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -48622,13 +48622,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -48674,7 +48674,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -48682,7 +48682,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -48730,7 +48730,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -48738,7 +48738,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -48786,13 +48786,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -48839,13 +48839,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -48900,7 +48900,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ @@ -48908,7 +48908,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -49010,13 +49010,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -49069,13 +49069,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -49129,13 +49129,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -49173,13 +49173,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -49219,13 +49219,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -49262,13 +49262,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -49312,7 +49312,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ @@ -49320,7 +49320,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -49362,13 +49362,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" @@ -49412,7 +49412,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ @@ -49420,7 +49420,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -49464,13 +49464,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" @@ -49513,13 +49513,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -49571,7 +49571,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ @@ -49579,7 +49579,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -49627,13 +49627,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" @@ -49684,7 +49684,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ @@ -49692,7 +49692,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -49742,13 +49742,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" @@ -49788,13 +49788,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -49840,7 +49840,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ @@ -49848,7 +49848,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -49896,13 +49896,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -49953,7 +49953,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ @@ -49961,7 +49961,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -50015,13 +50015,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -50072,13 +50072,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -50138,7 +50138,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ @@ -50146,7 +50146,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -50204,13 +50204,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -50272,7 +50272,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ @@ -50280,7 +50280,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -50341,13 +50341,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -50396,13 +50396,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -50445,13 +50445,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -50501,13 +50501,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -50563,7 +50563,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ @@ -50571,7 +50571,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -50622,7 +50622,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -50630,7 +50630,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -50678,13 +50678,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -50728,13 +50728,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 3652297fdf..b02da1651e 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,12 +251,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -313,12 +313,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -381,12 +381,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -449,12 +449,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -508,12 +508,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -579,12 +579,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -657,12 +657,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -733,12 +733,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -820,12 +820,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -888,12 +888,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -965,12 +965,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1043,12 +1043,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1122,12 +1122,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1212,12 +1212,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1315,12 +1315,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1392,12 +1392,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1464,12 +1464,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1540,12 +1540,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1624,12 +1624,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1696,12 +1696,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1761,12 +1761,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1832,12 +1832,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1923,12 +1923,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2002,12 +2002,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2067,12 +2067,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -2130,12 +2130,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2210,12 +2210,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2291,12 +2291,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2366,12 +2366,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2459,12 +2459,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2539,12 +2539,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2620,12 +2620,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2702,12 +2702,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2773,12 +2773,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2847,12 +2847,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2922,12 +2922,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2998,12 +2998,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3085,12 +3085,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3175,12 +3175,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3262,12 +3262,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3349,12 +3349,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3426,12 +3426,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3516,12 +3516,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3603,12 +3603,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3678,12 +3678,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3749,12 +3749,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3830,12 +3830,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3925,12 +3925,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4011,12 +4011,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4073,12 +4073,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4147,12 +4147,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4209,12 +4209,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4280,12 +4280,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4352,12 +4352,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4433,12 +4433,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4512,12 +4512,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4586,12 +4586,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4652,12 +4652,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4739,12 +4739,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4801,12 +4801,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4876,12 +4876,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4962,12 +4962,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5036,12 +5036,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5129,12 +5129,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5210,12 +5210,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5295,12 +5295,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5386,12 +5386,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5471,12 +5471,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5556,12 +5556,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5644,12 +5644,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5723,12 +5723,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5817,12 +5817,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5901,12 +5901,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5990,12 +5990,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6070,12 +6070,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6153,12 +6153,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6245,12 +6245,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6334,12 +6334,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6418,12 +6418,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6493,12 +6493,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6567,12 +6567,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6655,12 +6655,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6742,12 +6742,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6828,12 +6828,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6914,12 +6914,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7001,12 +7001,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7078,12 +7078,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7167,12 +7167,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7254,12 +7254,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7352,12 +7352,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7449,12 +7449,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7543,12 +7543,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7620,12 +7620,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7709,12 +7709,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7786,12 +7786,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7875,12 +7875,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7959,12 +7959,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8052,12 +8052,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8129,12 +8129,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8226,12 +8226,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8323,12 +8323,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8411,12 +8411,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8507,12 +8507,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8608,12 +8608,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8703,12 +8703,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8793,12 +8793,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8900,12 +8900,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8980,12 +8980,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9060,12 +9060,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9152,12 +9152,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9251,12 +9251,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9346,12 +9346,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9527,12 +9527,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9614,12 +9614,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9710,12 +9710,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9824,12 +9824,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9917,12 +9917,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -10011,12 +10011,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10119,12 +10119,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10203,12 +10203,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10285,12 +10285,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10375,12 +10375,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10457,12 +10457,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10553,12 +10553,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10625,12 +10625,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10723,12 +10723,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10810,12 +10810,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10900,12 +10900,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10978,12 +10978,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11055,12 +11055,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11146,12 +11146,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11237,12 +11237,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11313,12 +11313,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11397,12 +11397,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11495,12 +11495,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11585,12 +11585,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11670,12 +11670,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11766,12 +11766,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11840,12 +11840,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11934,12 +11934,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12081,12 +12081,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12203,12 +12203,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12268,12 +12268,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12357,12 +12357,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12440,12 +12440,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12511,12 +12511,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12595,12 +12595,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12668,12 +12668,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12764,12 +12764,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12829,12 +12829,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12912,12 +12912,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12989,12 +12989,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13061,12 +13061,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13153,12 +13153,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13231,12 +13231,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13311,12 +13311,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13382,12 +13382,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13454,12 +13454,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13546,12 +13546,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13623,12 +13623,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13706,12 +13706,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13790,12 +13790,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13888,12 +13888,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13989,12 +13989,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14060,12 +14060,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14295,12 +14295,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14382,12 +14382,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14464,12 +14464,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14566,12 +14566,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14649,12 +14649,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14746,12 +14746,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14874,12 +14874,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14999,12 +14999,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15061,12 +15061,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15141,12 +15141,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15215,12 +15215,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15298,12 +15298,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15395,12 +15395,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15479,12 +15479,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15617,12 +15617,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15703,12 +15703,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15768,12 +15768,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15879,12 +15879,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15993,12 +15993,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16099,12 +16099,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16176,12 +16176,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16266,12 +16266,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16354,12 +16354,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16465,12 +16465,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16573,12 +16573,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16648,12 +16648,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16727,12 +16727,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16800,12 +16800,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16873,12 +16873,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16950,12 +16950,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17038,12 +17038,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17104,12 +17104,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17178,12 +17178,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17270,12 +17270,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17363,12 +17363,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17467,12 +17467,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17552,12 +17552,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17638,12 +17638,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17720,12 +17720,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17791,12 +17791,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17862,12 +17862,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17921,12 +17921,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17981,12 +17981,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18052,12 +18052,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18111,12 +18111,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18170,12 +18170,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18232,12 +18232,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18294,12 +18294,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18356,12 +18356,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18479,12 +18479,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18567,12 +18567,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18651,12 +18651,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18728,12 +18728,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18803,12 +18803,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18895,12 +18895,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18960,12 +18960,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19034,12 +19034,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19108,12 +19108,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19183,12 +19183,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19272,12 +19272,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19352,12 +19352,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19448,12 +19448,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19525,12 +19525,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19602,12 +19602,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19698,12 +19698,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19788,12 +19788,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19876,12 +19876,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19964,12 +19964,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20041,12 +20041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20106,12 +20106,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20180,12 +20180,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20256,12 +20256,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20342,12 +20342,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20427,12 +20427,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20510,12 +20510,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20604,12 +20604,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20684,12 +20684,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20773,12 +20773,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20863,12 +20863,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20972,12 +20972,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21071,12 +21071,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21171,12 +21171,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21238,12 +21238,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21317,12 +21317,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21394,12 +21394,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21468,12 +21468,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21545,12 +21545,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21623,12 +21623,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21694,12 +21694,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21767,12 +21767,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21838,12 +21838,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21920,12 +21920,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22002,12 +22002,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22123,12 +22123,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22205,12 +22205,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22284,12 +22284,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22414,12 +22414,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22651,12 +22651,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22742,12 +22742,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22857,12 +22857,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22988,12 +22988,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23110,12 +23110,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23178,12 +23178,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23244,12 +23244,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23322,12 +23322,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23400,12 +23400,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23477,12 +23477,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23548,12 +23548,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23619,12 +23619,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23696,12 +23696,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23782,12 +23782,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23874,12 +23874,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -23963,12 +23963,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24049,12 +24049,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24136,12 +24136,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24210,12 +24210,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24288,12 +24288,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24368,12 +24368,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24446,12 +24446,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24532,12 +24532,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24603,12 +24603,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24678,12 +24678,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24753,12 +24753,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -24825,12 +24825,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24911,12 +24911,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24999,12 +24999,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25067,12 +25067,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25144,12 +25144,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25212,12 +25212,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25286,12 +25286,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25363,12 +25363,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25443,12 +25443,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25532,12 +25532,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25636,12 +25636,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25716,12 +25716,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25802,12 +25802,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25888,12 +25888,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25966,12 +25966,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26064,12 +26064,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26144,12 +26144,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26231,12 +26231,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26312,12 +26312,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26408,12 +26408,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26470,12 +26470,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26544,12 +26544,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26603,12 +26603,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26665,12 +26665,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26741,12 +26741,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26815,12 +26815,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26904,12 +26904,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26981,12 +26981,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27072,12 +27072,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27157,12 +27157,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27237,12 +27237,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27308,12 +27308,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -27377,12 +27377,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27457,12 +27457,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27532,12 +27532,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27607,12 +27607,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27685,12 +27685,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27761,12 +27761,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27851,12 +27851,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27938,12 +27938,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28039,12 +28039,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28134,12 +28134,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28224,12 +28224,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28297,12 +28297,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28383,12 +28383,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28493,12 +28493,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28579,12 +28579,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28647,12 +28647,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28732,12 +28732,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28812,12 +28812,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28889,12 +28889,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28966,12 +28966,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29043,12 +29043,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29118,12 +29118,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29207,12 +29207,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29360,12 +29360,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29425,12 +29425,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29508,12 +29508,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29584,12 +29584,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29652,12 +29652,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29714,12 +29714,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29788,12 +29788,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29859,12 +29859,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29933,12 +29933,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30004,12 +30004,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30076,12 +30076,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30162,12 +30162,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30242,12 +30242,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30327,12 +30327,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30407,12 +30407,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30475,12 +30475,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30552,12 +30552,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30633,12 +30633,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30717,12 +30717,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30798,12 +30798,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30882,12 +30882,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30964,12 +30964,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31060,12 +31060,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31153,12 +31153,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31252,12 +31252,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31345,12 +31345,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -31422,12 +31422,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31502,12 +31502,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -31593,12 +31593,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31641,12 +31641,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31714,12 +31714,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31786,12 +31786,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31860,12 +31860,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 84b8cee392..5320cde398 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 @@ -29602,13 +29602,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -29645,13 +29645,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -29689,13 +29689,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -29733,13 +29733,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -29775,13 +29775,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -29822,13 +29822,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -29877,13 +29877,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -29931,13 +29931,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -29992,7 +29992,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ @@ -30000,7 +30000,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30042,13 +30042,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -30094,7 +30094,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ @@ -30102,7 +30102,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30152,13 +30152,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -30207,13 +30207,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -30269,7 +30269,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ @@ -30277,7 +30277,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30342,13 +30342,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -30398,7 +30398,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ @@ -30406,7 +30406,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30452,13 +30452,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" @@ -30505,13 +30505,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -30566,7 +30566,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ @@ -30574,7 +30574,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30620,13 +30620,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" @@ -30665,13 +30665,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -30711,13 +30711,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -30774,7 +30774,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -30782,7 +30782,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30822,13 +30822,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -30865,13 +30865,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -30919,7 +30919,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ @@ -30927,7 +30927,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30977,7 +30977,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ @@ -30985,7 +30985,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31029,13 +31029,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -31089,7 +31089,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ @@ -31097,7 +31097,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31153,13 +31153,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -31209,13 +31209,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -31265,13 +31265,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -31313,13 +31313,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -31366,7 +31366,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ @@ -31374,7 +31374,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31425,13 +31425,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -31481,13 +31481,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -31546,7 +31546,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -31554,7 +31554,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31617,7 +31617,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -31625,7 +31625,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31681,13 +31681,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -31740,13 +31740,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -31796,13 +31796,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -31861,7 +31861,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ @@ -31869,7 +31869,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31925,13 +31925,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -31973,13 +31973,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -32021,7 +32021,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ @@ -32029,7 +32029,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32081,13 +32081,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -32143,7 +32143,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -32151,7 +32151,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32206,7 +32206,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -32214,7 +32214,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32252,13 +32252,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -32302,7 +32302,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ @@ -32310,7 +32310,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32348,13 +32348,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -32396,7 +32396,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ @@ -32404,7 +32404,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32446,13 +32446,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -32502,7 +32502,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ @@ -32510,7 +32510,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32562,13 +32562,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -32615,13 +32615,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -32660,13 +32660,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -32719,7 +32719,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ @@ -32727,7 +32727,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32765,13 +32765,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -32816,7 +32816,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ @@ -32824,7 +32824,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32879,13 +32879,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -32930,13 +32930,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -32994,7 +32994,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ @@ -33002,7 +33002,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33050,13 +33050,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -33108,7 +33108,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ @@ -33116,7 +33116,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33173,13 +33173,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -33228,13 +33228,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -33293,7 +33293,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ @@ -33301,7 +33301,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33403,13 +33403,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -33466,13 +33466,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" @@ -33520,13 +33520,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -33582,7 +33582,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ @@ -33590,7 +33590,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33642,13 +33642,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -33696,13 +33696,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -33762,7 +33762,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ @@ -33770,7 +33770,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33828,13 +33828,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -33887,13 +33887,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -33940,13 +33940,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -33992,13 +33992,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -34056,7 +34056,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ @@ -34064,7 +34064,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -34117,13 +34117,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -34179,7 +34179,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ @@ -34187,7 +34187,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -34245,13 +34245,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -34306,13 +34306,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -34374,7 +34374,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ @@ -34382,7 +34382,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -34438,13 +34438,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -34499,13 +34499,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -34552,13 +34552,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -34618,7 +34618,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ @@ -34626,7 +34626,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -34686,7 +34686,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ @@ -34694,7 +34694,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -34743,13 +34743,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -34805,13 +34805,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -34858,13 +34858,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -34920,13 +34920,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -34975,13 +34975,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -35040,13 +35040,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -35094,13 +35094,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" @@ -35161,7 +35161,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ @@ -35169,7 +35169,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -35232,7 +35232,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ @@ -35240,7 +35240,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -35297,7 +35297,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ @@ -35305,7 +35305,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -35367,7 +35367,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ @@ -35375,7 +35375,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -35441,13 +35441,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -35508,13 +35508,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -35572,13 +35572,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -35647,7 +35647,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ @@ -35655,7 +35655,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -35707,13 +35707,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -35763,13 +35763,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -35827,7 +35827,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ @@ -35835,7 +35835,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -35899,13 +35899,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -35965,7 +35965,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ @@ -35973,7 +35973,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -36096,7 +36096,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ @@ -36104,7 +36104,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -36157,13 +36157,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -36223,7 +36223,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ @@ -36231,7 +36231,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -36292,13 +36292,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -36358,13 +36358,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -36433,7 +36433,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ @@ -36441,7 +36441,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -36518,13 +36518,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -36576,13 +36576,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -36633,13 +36633,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -36695,7 +36695,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ @@ -36703,7 +36703,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -36756,13 +36756,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -36823,7 +36823,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ @@ -36831,7 +36831,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -36877,7 +36877,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ @@ -36885,7 +36885,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -36949,13 +36949,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -37009,7 +37009,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ @@ -37017,7 +37017,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -37079,13 +37079,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -37133,13 +37133,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -37187,13 +37187,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -37250,7 +37250,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -37258,7 +37258,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -37317,7 +37317,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -37325,7 +37325,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -37377,13 +37377,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -37438,7 +37438,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ @@ -37446,7 +37446,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -37507,13 +37507,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -37570,13 +37570,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -37630,13 +37630,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -37697,7 +37697,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ @@ -37705,7 +37705,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -37752,13 +37752,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -37838,13 +37838,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -37895,13 +37895,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -37952,7 +37952,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ @@ -37960,7 +37960,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38013,7 +38013,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ @@ -38021,7 +38021,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38062,13 +38062,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" @@ -38120,13 +38120,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -38176,7 +38176,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ @@ -38184,7 +38184,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38238,13 +38238,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -38289,13 +38289,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -38355,7 +38355,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ @@ -38363,7 +38363,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38404,13 +38404,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -38448,13 +38448,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -38504,7 +38504,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ @@ -38512,7 +38512,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38560,13 +38560,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -38609,13 +38609,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -38671,7 +38671,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ @@ -38679,7 +38679,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38728,13 +38728,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -38782,7 +38782,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ @@ -38790,7 +38790,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38834,13 +38834,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -38884,13 +38884,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -38946,7 +38946,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ @@ -38954,7 +38954,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -39002,13 +39002,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -39068,13 +39068,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -39134,13 +39134,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -39210,7 +39210,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ @@ -39218,7 +39218,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -39286,13 +39286,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -39331,13 +39331,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -39478,7 +39478,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ @@ -39486,7 +39486,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -39554,13 +39554,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -39623,13 +39623,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -39705,7 +39705,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ @@ -39713,7 +39713,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -39762,13 +39762,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -39833,7 +39833,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ @@ -39841,7 +39841,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -39925,13 +39925,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -40010,13 +40010,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -40055,13 +40055,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -40121,7 +40121,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ @@ -40129,7 +40129,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -40175,13 +40175,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -40231,7 +40231,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ @@ -40239,7 +40239,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -40301,13 +40301,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -40359,13 +40359,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -40458,13 +40458,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -40520,13 +40520,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -40564,13 +40564,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -40638,13 +40638,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -40711,13 +40711,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -40783,13 +40783,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -40832,13 +40832,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -40896,13 +40896,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -40959,13 +40959,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -41034,7 +41034,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -41042,7 +41042,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41111,7 +41111,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -41119,7 +41119,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41166,13 +41166,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -41220,7 +41220,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -41228,7 +41228,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41274,7 +41274,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -41282,7 +41282,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41330,13 +41330,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -41384,13 +41384,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -41446,7 +41446,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ @@ -41454,7 +41454,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41495,13 +41495,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -41545,13 +41545,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -41627,13 +41627,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -41710,13 +41710,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -41803,7 +41803,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ @@ -41811,7 +41811,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41872,7 +41872,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ @@ -41880,7 +41880,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41924,13 +41924,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -41971,7 +41971,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ @@ -41979,7 +41979,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42033,7 +42033,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ @@ -42041,7 +42041,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42095,13 +42095,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -42136,13 +42136,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -42177,13 +42177,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -42226,7 +42226,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ @@ -42234,7 +42234,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42271,7 +42271,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ @@ -42279,7 +42279,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42316,7 +42316,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ @@ -42324,7 +42324,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42362,13 +42362,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -42404,13 +42404,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -42446,7 +42446,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ @@ -42454,7 +42454,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42533,13 +42533,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -42590,13 +42590,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -42647,7 +42647,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ @@ -42655,7 +42655,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42704,13 +42704,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -42756,13 +42756,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -42819,7 +42819,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ @@ -42827,7 +42827,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42868,13 +42868,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -42919,7 +42919,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ @@ -42927,7 +42927,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42975,13 +42975,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -43027,13 +43027,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -43089,7 +43089,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ @@ -43097,7 +43097,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -43148,13 +43148,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -43211,13 +43211,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -43264,7 +43264,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ @@ -43272,7 +43272,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -43321,7 +43321,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ @@ -43329,7 +43329,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -43388,13 +43388,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -43451,13 +43451,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -43513,13 +43513,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -43573,7 +43573,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ @@ -43581,7 +43581,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -43632,13 +43632,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -43694,13 +43694,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -43757,13 +43757,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -43832,7 +43832,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ @@ -43840,7 +43840,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -43905,13 +43905,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -43975,13 +43975,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -44027,7 +44027,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ @@ -44035,7 +44035,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -44075,13 +44075,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -44125,7 +44125,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ @@ -44133,7 +44133,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -44182,13 +44182,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -44245,7 +44245,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ @@ -44253,7 +44253,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -44309,13 +44309,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -44368,13 +44368,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -44434,7 +44434,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ @@ -44442,7 +44442,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -44484,13 +44484,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -44538,7 +44538,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ @@ -44546,7 +44546,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -44591,13 +44591,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -44660,7 +44660,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ @@ -44668,7 +44668,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -44717,13 +44717,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -44771,13 +44771,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -44816,13 +44816,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -44866,13 +44866,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -44951,13 +44951,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -44996,13 +44996,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" @@ -45049,13 +45049,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -45105,13 +45105,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -45187,13 +45187,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -45240,13 +45240,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -45295,13 +45295,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -45393,13 +45393,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -45602,13 +45602,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -45672,13 +45672,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -45759,13 +45759,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -45853,13 +45853,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -45899,13 +45899,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -45944,13 +45944,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -45997,7 +45997,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -46005,7 +46005,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46054,7 +46054,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -46062,7 +46062,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46112,7 +46112,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ @@ -46120,7 +46120,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46166,13 +46166,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -46211,13 +46211,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -46263,7 +46263,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ @@ -46271,7 +46271,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46323,13 +46323,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -46386,7 +46386,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ @@ -46394,7 +46394,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46452,13 +46452,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -46508,13 +46508,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -46570,13 +46570,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -46621,13 +46621,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -46676,7 +46676,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ @@ -46684,7 +46684,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46735,13 +46735,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -46789,13 +46789,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -46848,7 +46848,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ @@ -46856,7 +46856,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46898,13 +46898,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" @@ -46949,7 +46949,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ @@ -46957,7 +46957,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47004,13 +47004,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" @@ -47053,13 +47053,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -47111,7 +47111,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ @@ -47119,7 +47119,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47175,7 +47175,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ @@ -47183,7 +47183,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47225,13 +47225,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -47277,7 +47277,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ @@ -47285,7 +47285,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47325,13 +47325,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -47375,7 +47375,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ @@ -47383,7 +47383,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47431,13 +47431,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -47486,13 +47486,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -47546,7 +47546,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ @@ -47554,7 +47554,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47623,13 +47623,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -47675,13 +47675,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -47733,7 +47733,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ @@ -47741,7 +47741,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47795,13 +47795,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -47849,13 +47849,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -47915,7 +47915,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ @@ -47923,7 +47923,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47970,13 +47970,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -48029,7 +48029,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ @@ -48037,7 +48037,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48090,13 +48090,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -48156,7 +48156,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ @@ -48164,7 +48164,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48202,13 +48202,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -48255,7 +48255,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ @@ -48263,7 +48263,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48303,13 +48303,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -48345,13 +48345,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -48396,7 +48396,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ @@ -48404,7 +48404,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48451,13 +48451,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -48508,13 +48508,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -48561,13 +48561,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -48623,7 +48623,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ @@ -48631,7 +48631,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48682,13 +48682,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -48737,13 +48737,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -48792,7 +48792,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -48800,7 +48800,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48850,13 +48850,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -48897,13 +48897,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -48951,7 +48951,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ @@ -48959,7 +48959,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -49003,13 +49003,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -49054,7 +49054,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ @@ -49062,7 +49062,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -49112,13 +49112,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -49165,13 +49165,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -49227,7 +49227,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ @@ -49235,7 +49235,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -49288,13 +49288,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -49354,7 +49354,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ @@ -49362,7 +49362,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -49424,13 +49424,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -49487,13 +49487,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -49537,7 +49537,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ @@ -49545,7 +49545,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -49601,13 +49601,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -49678,13 +49678,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -49740,13 +49740,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -49786,13 +49786,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -49848,13 +49848,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -49902,13 +49902,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -49954,7 +49954,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -49962,7 +49962,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -50010,7 +50010,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -50018,7 +50018,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -50066,13 +50066,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -50119,13 +50119,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -50180,7 +50180,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ @@ -50188,7 +50188,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -50290,13 +50290,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -50349,13 +50349,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -50409,13 +50409,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -50453,13 +50453,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -50499,13 +50499,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -50542,13 +50542,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -50592,7 +50592,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ @@ -50600,7 +50600,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -50642,13 +50642,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" @@ -50692,7 +50692,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ @@ -50700,7 +50700,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -50744,13 +50744,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" @@ -50793,13 +50793,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -50851,7 +50851,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ @@ -50859,7 +50859,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -50907,13 +50907,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" @@ -50964,7 +50964,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ @@ -50972,7 +50972,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -51022,13 +51022,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" @@ -51068,13 +51068,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -51120,7 +51120,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ @@ -51128,7 +51128,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -51176,13 +51176,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -51233,7 +51233,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ @@ -51241,7 +51241,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -51295,13 +51295,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -51352,13 +51352,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -51418,7 +51418,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ @@ -51426,7 +51426,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -51484,13 +51484,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -51552,7 +51552,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ @@ -51560,7 +51560,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -51621,13 +51621,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -51676,13 +51676,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -51725,13 +51725,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -51781,13 +51781,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -51843,7 +51843,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ @@ -51851,7 +51851,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -51883,13 +51883,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" @@ -51938,7 +51938,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -51946,7 +51946,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -51994,13 +51994,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -52044,13 +52044,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 dbd0b0aa1d..206424dd89 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,12 +251,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -313,12 +313,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -381,12 +381,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -449,12 +449,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -508,12 +508,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -579,12 +579,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -657,12 +657,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -733,12 +733,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -820,12 +820,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -888,12 +888,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -965,12 +965,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1043,12 +1043,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1122,12 +1122,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1212,12 +1212,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1315,12 +1315,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1392,12 +1392,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1464,12 +1464,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1540,12 +1540,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1624,12 +1624,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1696,12 +1696,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1761,12 +1761,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1832,12 +1832,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1923,12 +1923,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2002,12 +2002,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2067,12 +2067,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -2130,12 +2130,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2210,12 +2210,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2291,12 +2291,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2366,12 +2366,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2459,12 +2459,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2539,12 +2539,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2620,12 +2620,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2702,12 +2702,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2773,12 +2773,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2847,12 +2847,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2922,12 +2922,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2998,12 +2998,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3085,12 +3085,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3175,12 +3175,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3262,12 +3262,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3349,12 +3349,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3426,12 +3426,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3515,12 +3515,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3601,12 +3601,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3676,12 +3676,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3747,12 +3747,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3828,12 +3828,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3923,12 +3923,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4009,12 +4009,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4071,12 +4071,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4145,12 +4145,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4207,12 +4207,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4278,12 +4278,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4349,12 +4349,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4481,12 +4481,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4559,12 +4559,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4666,12 +4666,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4731,12 +4731,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4818,12 +4818,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4880,12 +4880,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4955,12 +4955,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5041,12 +5041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5115,12 +5115,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5208,12 +5208,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5289,12 +5289,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5374,12 +5374,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5465,12 +5465,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5550,12 +5550,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5635,12 +5635,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5723,12 +5723,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5802,12 +5802,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5896,12 +5896,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5980,12 +5980,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6069,12 +6069,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6149,12 +6149,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6232,12 +6232,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6324,12 +6324,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6413,12 +6413,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6497,12 +6497,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6572,12 +6572,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6646,12 +6646,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6734,12 +6734,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6821,12 +6821,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6907,12 +6907,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6993,12 +6993,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7080,12 +7080,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7157,12 +7157,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7246,12 +7246,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7333,12 +7333,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7431,12 +7431,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7528,12 +7528,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7622,12 +7622,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7699,12 +7699,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7788,12 +7788,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7865,12 +7865,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7954,12 +7954,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8038,12 +8038,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8131,12 +8131,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8208,12 +8208,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8305,12 +8305,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8402,12 +8402,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8490,12 +8490,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8586,12 +8586,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8687,12 +8687,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8782,12 +8782,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8872,12 +8872,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8979,12 +8979,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9059,12 +9059,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9139,12 +9139,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9231,12 +9231,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9330,12 +9330,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9425,12 +9425,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9606,12 +9606,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9693,12 +9693,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9789,12 +9789,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9903,12 +9903,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9996,12 +9996,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -10090,12 +10090,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10198,12 +10198,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10282,12 +10282,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10364,12 +10364,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10454,12 +10454,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10536,12 +10536,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10632,12 +10632,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10704,12 +10704,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10802,12 +10802,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10889,12 +10889,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10979,12 +10979,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11059,12 +11059,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11134,12 +11134,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11223,12 +11223,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11312,12 +11312,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11406,12 +11406,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11499,12 +11499,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11611,12 +11611,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11719,12 +11719,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11825,12 +11825,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11945,12 +11945,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12038,12 +12038,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12139,12 +12139,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12244,12 +12244,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12319,12 +12319,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12403,12 +12403,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12501,12 +12501,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12591,12 +12591,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12676,12 +12676,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12772,12 +12772,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12846,12 +12846,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12940,12 +12940,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13087,12 +13087,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13181,12 +13181,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13267,12 +13267,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13389,12 +13389,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13454,12 +13454,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13543,12 +13543,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13626,12 +13626,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13697,12 +13697,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13781,12 +13781,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13854,12 +13854,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13950,12 +13950,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14015,12 +14015,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14098,12 +14098,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14175,12 +14175,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14247,12 +14247,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14339,12 +14339,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14417,12 +14417,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14497,12 +14497,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14568,12 +14568,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14640,12 +14640,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14732,12 +14732,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14809,12 +14809,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14892,12 +14892,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14976,12 +14976,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15074,12 +15074,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15175,12 +15175,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15246,12 +15246,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15481,12 +15481,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15568,12 +15568,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15650,12 +15650,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15752,12 +15752,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15835,12 +15835,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15932,12 +15932,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16060,12 +16060,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16185,12 +16185,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16247,12 +16247,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16327,12 +16327,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16401,12 +16401,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16484,12 +16484,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16581,12 +16581,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16665,12 +16665,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16803,12 +16803,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16889,12 +16889,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16954,12 +16954,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17065,12 +17065,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17179,12 +17179,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17285,12 +17285,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17362,12 +17362,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17452,12 +17452,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17540,12 +17540,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17651,12 +17651,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17759,12 +17759,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17834,12 +17834,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17913,12 +17913,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17986,12 +17986,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18059,12 +18059,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18136,12 +18136,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18224,12 +18224,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18290,12 +18290,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18364,12 +18364,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18456,12 +18456,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18549,12 +18549,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18653,12 +18653,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18736,12 +18736,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18819,12 +18819,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18900,12 +18900,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18971,12 +18971,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19042,12 +19042,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19101,12 +19101,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19161,12 +19161,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19232,12 +19232,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19291,12 +19291,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19350,12 +19350,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19412,12 +19412,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19474,12 +19474,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19536,12 +19536,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19659,12 +19659,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19747,12 +19747,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19831,12 +19831,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19908,12 +19908,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19983,12 +19983,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20075,12 +20075,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20140,12 +20140,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20214,12 +20214,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20288,12 +20288,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20363,12 +20363,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20452,12 +20452,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20532,12 +20532,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20628,12 +20628,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20705,12 +20705,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20782,12 +20782,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20878,12 +20878,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20968,12 +20968,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21056,12 +21056,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21144,12 +21144,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21221,12 +21221,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21286,12 +21286,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21360,12 +21360,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21436,12 +21436,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21522,12 +21522,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21607,12 +21607,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21690,12 +21690,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21784,12 +21784,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21864,12 +21864,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21953,12 +21953,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22043,12 +22043,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22152,12 +22152,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22251,12 +22251,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22351,12 +22351,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22418,12 +22418,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22497,12 +22497,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22574,12 +22574,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22648,12 +22648,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22725,12 +22725,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22803,12 +22803,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22874,12 +22874,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22947,12 +22947,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23018,12 +23018,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23100,12 +23100,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23182,12 +23182,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23303,12 +23303,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23385,12 +23385,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23464,12 +23464,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23594,12 +23594,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23831,12 +23831,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23922,12 +23922,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24037,12 +24037,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24168,12 +24168,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24290,12 +24290,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24358,12 +24358,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24424,12 +24424,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24502,12 +24502,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24580,12 +24580,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24657,12 +24657,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24728,12 +24728,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24799,12 +24799,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24876,12 +24876,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24962,12 +24962,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25054,12 +25054,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25143,12 +25143,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25229,12 +25229,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25316,12 +25316,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25390,12 +25390,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25468,12 +25468,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25548,12 +25548,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25626,12 +25626,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25712,12 +25712,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25783,12 +25783,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25858,12 +25858,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25933,12 +25933,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26005,12 +26005,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26091,12 +26091,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26179,12 +26179,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26247,12 +26247,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26324,12 +26324,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26392,12 +26392,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26466,12 +26466,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26543,12 +26543,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26623,12 +26623,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26712,12 +26712,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26816,12 +26816,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26896,12 +26896,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26982,12 +26982,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27068,12 +27068,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27146,12 +27146,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27244,12 +27244,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27332,12 +27332,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27415,12 +27415,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27499,12 +27499,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27585,12 +27585,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27671,12 +27671,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27757,12 +27757,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27837,12 +27837,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27924,12 +27924,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28005,12 +28005,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28101,12 +28101,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28163,12 +28163,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28237,12 +28237,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28296,12 +28296,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28358,12 +28358,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28434,12 +28434,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28508,12 +28508,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28597,12 +28597,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28674,12 +28674,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28765,12 +28765,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28835,12 +28835,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28920,12 +28920,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29000,12 +29000,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29071,12 +29071,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -29140,12 +29140,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29220,12 +29220,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29295,12 +29295,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29370,12 +29370,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29448,12 +29448,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29524,12 +29524,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29614,12 +29614,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29701,12 +29701,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29802,12 +29802,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29897,12 +29897,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29987,12 +29987,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30060,12 +30060,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30146,12 +30146,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30256,12 +30256,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30342,12 +30342,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30410,12 +30410,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30495,12 +30495,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30575,12 +30575,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30652,12 +30652,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30729,12 +30729,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30806,12 +30806,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30881,12 +30881,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30970,12 +30970,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31123,12 +31123,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31188,12 +31188,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31271,12 +31271,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31347,12 +31347,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31415,12 +31415,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31477,12 +31477,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31551,12 +31551,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31622,12 +31622,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31696,12 +31696,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31767,12 +31767,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -31839,12 +31839,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31925,12 +31925,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32005,12 +32005,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32090,12 +32090,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32170,12 +32170,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32238,12 +32238,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32315,12 +32315,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32396,12 +32396,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32480,12 +32480,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32561,12 +32561,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32645,12 +32645,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32727,12 +32727,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32823,12 +32823,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32916,12 +32916,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33015,12 +33015,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33108,12 +33108,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33185,12 +33185,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33265,12 +33265,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33356,12 +33356,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33404,12 +33404,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33477,12 +33477,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33549,12 +33549,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33623,12 +33623,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 95f371b5d5..e85adb25d5 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 @@ -29869,13 +29869,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -29912,13 +29912,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -29956,13 +29956,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -30000,13 +30000,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -30042,13 +30042,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -30089,13 +30089,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -30144,13 +30144,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -30198,13 +30198,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -30259,7 +30259,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ @@ -30267,7 +30267,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -30309,13 +30309,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -30361,7 +30361,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ @@ -30369,7 +30369,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -30419,13 +30419,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -30474,13 +30474,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -30536,7 +30536,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ @@ -30544,7 +30544,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -30609,13 +30609,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -30665,7 +30665,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ @@ -30673,7 +30673,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -30719,13 +30719,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" @@ -30772,13 +30772,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -30833,7 +30833,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ @@ -30841,7 +30841,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -30887,13 +30887,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" @@ -30932,13 +30932,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -30978,13 +30978,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -31041,7 +31041,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -31049,7 +31049,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31089,13 +31089,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -31132,13 +31132,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -31186,7 +31186,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ @@ -31194,7 +31194,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31244,7 +31244,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ @@ -31252,7 +31252,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31296,13 +31296,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -31356,7 +31356,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ @@ -31364,7 +31364,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31420,13 +31420,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -31476,13 +31476,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -31532,13 +31532,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -31580,13 +31580,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -31633,7 +31633,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ @@ -31641,7 +31641,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31692,13 +31692,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -31748,13 +31748,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -31813,7 +31813,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -31821,7 +31821,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31884,7 +31884,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -31892,7 +31892,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31948,13 +31948,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -32007,13 +32007,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -32063,13 +32063,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -32127,7 +32127,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ @@ -32135,7 +32135,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32190,13 +32190,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -32238,13 +32238,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -32286,7 +32286,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ @@ -32294,7 +32294,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32346,13 +32346,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -32408,7 +32408,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -32416,7 +32416,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32471,7 +32471,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -32479,7 +32479,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32517,13 +32517,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -32567,7 +32567,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ @@ -32575,7 +32575,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32613,13 +32613,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -32661,7 +32661,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ @@ -32669,7 +32669,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32710,13 +32710,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -32801,7 +32801,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ @@ -32809,7 +32809,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32860,13 +32860,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -32935,13 +32935,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -32979,13 +32979,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -33038,7 +33038,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ @@ -33046,7 +33046,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33084,13 +33084,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -33135,7 +33135,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ @@ -33143,7 +33143,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33198,13 +33198,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -33249,13 +33249,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -33313,7 +33313,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ @@ -33321,7 +33321,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33369,13 +33369,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -33427,7 +33427,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ @@ -33435,7 +33435,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33492,13 +33492,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -33547,13 +33547,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -33612,7 +33612,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ @@ -33620,7 +33620,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33722,13 +33722,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -33785,13 +33785,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" @@ -33839,13 +33839,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -33901,7 +33901,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ @@ -33909,7 +33909,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33961,13 +33961,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -34015,13 +34015,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -34081,7 +34081,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ @@ -34089,7 +34089,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -34147,13 +34147,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -34206,13 +34206,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -34259,13 +34259,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -34311,13 +34311,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -34375,7 +34375,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ @@ -34383,7 +34383,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -34436,13 +34436,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -34498,7 +34498,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ @@ -34506,7 +34506,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -34564,13 +34564,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -34625,13 +34625,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -34693,7 +34693,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ @@ -34701,7 +34701,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -34757,13 +34757,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -34818,13 +34818,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -34871,13 +34871,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -34937,7 +34937,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ @@ -34945,7 +34945,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -35005,7 +35005,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ @@ -35013,7 +35013,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -35062,13 +35062,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -35124,13 +35124,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -35177,13 +35177,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -35239,13 +35239,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -35294,13 +35294,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -35359,13 +35359,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -35413,13 +35413,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" @@ -35480,7 +35480,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ @@ -35488,7 +35488,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -35551,7 +35551,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ @@ -35559,7 +35559,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -35616,7 +35616,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ @@ -35624,7 +35624,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -35686,7 +35686,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ @@ -35694,7 +35694,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -35760,13 +35760,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -35827,13 +35827,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -35891,13 +35891,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -35966,7 +35966,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ @@ -35974,7 +35974,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -36026,13 +36026,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -36082,13 +36082,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -36146,7 +36146,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ @@ -36154,7 +36154,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -36218,13 +36218,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -36284,7 +36284,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ @@ -36292,7 +36292,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -36415,7 +36415,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ @@ -36423,7 +36423,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -36476,13 +36476,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -36542,7 +36542,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ @@ -36550,7 +36550,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -36611,13 +36611,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -36677,13 +36677,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -36752,7 +36752,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ @@ -36760,7 +36760,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -36837,13 +36837,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -36895,13 +36895,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -36952,13 +36952,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -37014,7 +37014,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ @@ -37022,7 +37022,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -37075,13 +37075,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -37142,7 +37142,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ @@ -37150,7 +37150,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -37196,7 +37196,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ @@ -37204,7 +37204,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -37268,13 +37268,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -37328,7 +37328,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ @@ -37336,7 +37336,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -37398,13 +37398,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -37453,13 +37453,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -37505,13 +37505,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -37566,7 +37566,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -37574,7 +37574,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -37631,7 +37631,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -37639,7 +37639,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -37699,13 +37699,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" @@ -37763,7 +37763,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ @@ -37771,7 +37771,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -37843,13 +37843,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" @@ -37917,13 +37917,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" @@ -37990,13 +37990,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" @@ -38072,7 +38072,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ @@ -38080,7 +38080,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38141,13 +38141,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" @@ -38211,13 +38211,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" @@ -38284,7 +38284,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ @@ -38292,7 +38292,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38343,13 +38343,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -38404,7 +38404,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ @@ -38412,7 +38412,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38473,13 +38473,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -38536,13 +38536,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -38596,13 +38596,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -38663,7 +38663,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ @@ -38671,7 +38671,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38718,13 +38718,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -38782,7 +38782,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ @@ -38790,7 +38790,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38845,7 +38845,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ @@ -38853,7 +38853,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38935,13 +38935,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -38992,13 +38992,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -39049,7 +39049,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ @@ -39057,7 +39057,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39110,7 +39110,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ @@ -39118,7 +39118,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39159,13 +39159,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" @@ -39217,13 +39217,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -39273,7 +39273,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ @@ -39281,7 +39281,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39335,13 +39335,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -39386,13 +39386,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -39452,7 +39452,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ @@ -39460,7 +39460,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39501,13 +39501,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -39545,13 +39545,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -39601,7 +39601,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ @@ -39609,7 +39609,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39657,13 +39657,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -39706,13 +39706,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -39768,7 +39768,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ @@ -39776,7 +39776,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39825,13 +39825,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -39879,7 +39879,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ @@ -39887,7 +39887,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39931,13 +39931,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -39981,13 +39981,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -40043,7 +40043,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ @@ -40051,7 +40051,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -40099,13 +40099,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -40165,13 +40165,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -40231,13 +40231,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -40307,7 +40307,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ @@ -40315,7 +40315,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -40383,13 +40383,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -40428,13 +40428,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -40575,7 +40575,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ @@ -40583,7 +40583,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -40651,13 +40651,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -40720,13 +40720,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -40802,7 +40802,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ @@ -40810,7 +40810,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -40859,13 +40859,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -40930,7 +40930,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ @@ -40938,7 +40938,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -41022,13 +41022,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -41107,13 +41107,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -41152,13 +41152,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -41218,7 +41218,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ @@ -41226,7 +41226,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -41272,13 +41272,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -41328,7 +41328,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ @@ -41336,7 +41336,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -41398,13 +41398,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -41456,13 +41456,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -41555,13 +41555,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -41617,13 +41617,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -41661,13 +41661,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -41735,13 +41735,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -41808,13 +41808,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -41880,13 +41880,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -41929,13 +41929,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -41993,13 +41993,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -42056,13 +42056,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -42131,7 +42131,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -42139,7 +42139,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42208,7 +42208,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -42216,7 +42216,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42263,13 +42263,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -42317,7 +42317,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -42325,7 +42325,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42371,7 +42371,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -42379,7 +42379,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42427,13 +42427,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -42481,13 +42481,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -42543,7 +42543,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ @@ -42551,7 +42551,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42592,13 +42592,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -42642,13 +42642,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -42724,13 +42724,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -42807,13 +42807,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -42900,7 +42900,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ @@ -42908,7 +42908,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42967,7 +42967,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ @@ -42975,7 +42975,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43018,13 +43018,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -43065,7 +43065,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ @@ -43073,7 +43073,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43125,7 +43125,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ @@ -43133,7 +43133,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43186,13 +43186,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -43227,13 +43227,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -43268,13 +43268,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -43317,7 +43317,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ @@ -43325,7 +43325,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43362,7 +43362,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ @@ -43370,7 +43370,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43407,7 +43407,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ @@ -43415,7 +43415,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43453,13 +43453,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -43495,13 +43495,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -43537,7 +43537,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ @@ -43545,7 +43545,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43624,13 +43624,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -43681,13 +43681,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -43738,7 +43738,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ @@ -43746,7 +43746,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43795,13 +43795,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -43847,13 +43847,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -43910,7 +43910,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ @@ -43918,7 +43918,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43959,13 +43959,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -44010,7 +44010,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ @@ -44018,7 +44018,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -44066,13 +44066,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -44118,13 +44118,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -44180,7 +44180,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ @@ -44188,7 +44188,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -44239,13 +44239,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -44302,13 +44302,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -44355,7 +44355,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ @@ -44363,7 +44363,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -44412,7 +44412,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ @@ -44420,7 +44420,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -44479,13 +44479,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -44542,13 +44542,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -44604,13 +44604,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -44664,7 +44664,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ @@ -44672,7 +44672,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -44723,13 +44723,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -44785,13 +44785,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -44848,13 +44848,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -44923,7 +44923,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ @@ -44931,7 +44931,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -44996,13 +44996,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -45066,13 +45066,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -45118,7 +45118,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ @@ -45126,7 +45126,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -45166,13 +45166,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -45216,7 +45216,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ @@ -45224,7 +45224,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -45273,13 +45273,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -45336,7 +45336,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ @@ -45344,7 +45344,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -45400,13 +45400,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -45459,13 +45459,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -45525,7 +45525,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ @@ -45533,7 +45533,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -45575,13 +45575,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -45629,7 +45629,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ @@ -45637,7 +45637,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -45682,13 +45682,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -45751,7 +45751,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ @@ -45759,7 +45759,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -45808,13 +45808,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -45862,13 +45862,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -45907,13 +45907,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -45957,13 +45957,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -46042,13 +46042,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -46087,13 +46087,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" @@ -46140,13 +46140,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -46196,13 +46196,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -46278,13 +46278,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -46331,13 +46331,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -46386,13 +46386,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -46484,13 +46484,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -46693,13 +46693,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -46763,13 +46763,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -46850,13 +46850,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -46944,13 +46944,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -46990,13 +46990,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -47035,13 +47035,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -47088,7 +47088,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -47096,7 +47096,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47145,7 +47145,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -47153,7 +47153,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47203,7 +47203,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ @@ -47211,7 +47211,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47257,13 +47257,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -47302,13 +47302,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -47354,7 +47354,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ @@ -47362,7 +47362,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47414,13 +47414,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -47477,7 +47477,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ @@ -47485,7 +47485,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47543,13 +47543,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -47599,13 +47599,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -47661,13 +47661,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -47712,13 +47712,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -47767,7 +47767,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ @@ -47775,7 +47775,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47826,13 +47826,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -47880,13 +47880,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -47939,7 +47939,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ @@ -47947,7 +47947,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47989,13 +47989,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" @@ -48040,7 +48040,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ @@ -48048,7 +48048,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48095,13 +48095,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" @@ -48144,13 +48144,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -48202,7 +48202,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ @@ -48210,7 +48210,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48266,7 +48266,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ @@ -48274,7 +48274,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48316,13 +48316,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -48368,7 +48368,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ @@ -48376,7 +48376,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48416,13 +48416,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -48466,7 +48466,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ @@ -48474,7 +48474,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48522,13 +48522,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -48577,13 +48577,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -48637,7 +48637,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ @@ -48645,7 +48645,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48714,13 +48714,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -48766,13 +48766,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -48824,7 +48824,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ @@ -48832,7 +48832,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48886,13 +48886,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -48940,13 +48940,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -49006,7 +49006,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ @@ -49014,7 +49014,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49069,7 +49069,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ @@ -49077,7 +49077,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49129,13 +49129,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" @@ -49186,13 +49186,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" @@ -49244,7 +49244,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ @@ -49252,7 +49252,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49306,7 +49306,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ @@ -49314,7 +49314,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49365,13 +49365,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" @@ -49416,13 +49416,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -49475,7 +49475,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ @@ -49483,7 +49483,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49536,13 +49536,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -49602,7 +49602,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ @@ -49610,7 +49610,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49648,13 +49648,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -49701,7 +49701,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ @@ -49709,7 +49709,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49749,13 +49749,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -49791,13 +49791,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -49842,7 +49842,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ @@ -49850,7 +49850,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49897,13 +49897,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -49954,13 +49954,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -50007,13 +50007,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -50069,7 +50069,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ @@ -50077,7 +50077,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50121,7 +50121,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ @@ -50129,7 +50129,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50180,13 +50180,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -50235,13 +50235,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -50290,7 +50290,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -50298,7 +50298,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50348,13 +50348,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -50395,13 +50395,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -50449,7 +50449,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ @@ -50457,7 +50457,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50501,13 +50501,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -50552,7 +50552,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ @@ -50560,7 +50560,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50610,13 +50610,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -50663,13 +50663,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -50725,7 +50725,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ @@ -50733,7 +50733,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50786,13 +50786,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -50852,7 +50852,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ @@ -50860,7 +50860,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50922,13 +50922,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -50985,13 +50985,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -51035,7 +51035,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ @@ -51043,7 +51043,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -51099,13 +51099,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -51176,13 +51176,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -51238,13 +51238,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -51284,13 +51284,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -51346,13 +51346,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -51400,13 +51400,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -51452,7 +51452,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -51460,7 +51460,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -51508,7 +51508,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -51516,7 +51516,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -51564,13 +51564,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -51617,13 +51617,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -51678,7 +51678,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ @@ -51686,7 +51686,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -51788,13 +51788,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -51847,13 +51847,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -51907,13 +51907,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -51951,13 +51951,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -51997,13 +51997,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -52040,13 +52040,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -52090,7 +52090,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ @@ -52098,7 +52098,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52140,13 +52140,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" @@ -52190,7 +52190,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ @@ -52198,7 +52198,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52242,13 +52242,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" @@ -52291,13 +52291,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -52349,7 +52349,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ @@ -52357,7 +52357,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52405,13 +52405,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" @@ -52462,7 +52462,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ @@ -52470,7 +52470,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52520,13 +52520,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" @@ -52566,13 +52566,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -52618,7 +52618,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ @@ -52626,7 +52626,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52674,13 +52674,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -52731,7 +52731,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ @@ -52739,7 +52739,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52793,13 +52793,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -52850,13 +52850,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -52916,7 +52916,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ @@ -52924,7 +52924,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52982,13 +52982,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -53050,7 +53050,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ @@ -53058,7 +53058,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -53119,13 +53119,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -53174,13 +53174,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -53223,13 +53223,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -53279,13 +53279,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -53341,7 +53341,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ @@ -53349,7 +53349,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -53381,13 +53381,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" @@ -53436,7 +53436,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -53444,7 +53444,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -53492,13 +53492,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -53542,13 +53542,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 aabf8ee7e4..454ec26349 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,12 +251,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -313,12 +313,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -381,12 +381,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -449,12 +449,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -508,12 +508,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -579,12 +579,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -657,12 +657,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -733,12 +733,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -820,12 +820,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -888,12 +888,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -965,12 +965,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1043,12 +1043,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1122,12 +1122,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1212,12 +1212,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1315,12 +1315,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1392,12 +1392,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1464,12 +1464,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1540,12 +1540,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1624,12 +1624,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1696,12 +1696,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1761,12 +1761,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1832,12 +1832,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1923,12 +1923,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2002,12 +2002,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2067,12 +2067,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -2130,12 +2130,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2210,12 +2210,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2291,12 +2291,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2366,12 +2366,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2459,12 +2459,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2539,12 +2539,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2620,12 +2620,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2702,12 +2702,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2773,12 +2773,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2847,12 +2847,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2922,12 +2922,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2998,12 +2998,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3085,12 +3085,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3175,12 +3175,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3262,12 +3262,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3349,12 +3349,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3426,12 +3426,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3515,12 +3515,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3601,12 +3601,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3676,12 +3676,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3747,12 +3747,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3828,12 +3828,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3923,12 +3923,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4009,12 +4009,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4071,12 +4071,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4145,12 +4145,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4207,12 +4207,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4278,12 +4278,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4349,12 +4349,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4481,12 +4481,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4559,12 +4559,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4666,12 +4666,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4731,12 +4731,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4818,12 +4818,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4880,12 +4880,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4955,12 +4955,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5041,12 +5041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5115,12 +5115,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5208,12 +5208,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5288,12 +5288,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5378,12 +5378,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5468,12 +5468,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5553,12 +5553,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5638,12 +5638,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5726,12 +5726,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5804,12 +5804,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5897,12 +5897,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5980,12 +5980,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6069,12 +6069,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6149,12 +6149,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6232,12 +6232,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6324,12 +6324,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6413,12 +6413,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6497,12 +6497,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6571,12 +6571,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6643,12 +6643,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6729,12 +6729,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6815,12 +6815,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6901,12 +6901,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6987,12 +6987,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7074,12 +7074,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7151,12 +7151,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7240,12 +7240,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7327,12 +7327,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7425,12 +7425,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7522,12 +7522,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7616,12 +7616,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7693,12 +7693,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7782,12 +7782,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7859,12 +7859,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7948,12 +7948,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8032,12 +8032,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8125,12 +8125,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8202,12 +8202,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8299,12 +8299,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8396,12 +8396,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8484,12 +8484,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8580,12 +8580,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8681,12 +8681,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8776,12 +8776,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8866,12 +8866,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8973,12 +8973,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9052,12 +9052,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9130,12 +9130,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9221,12 +9221,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9318,12 +9318,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9412,12 +9412,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9592,12 +9592,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9679,12 +9679,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9775,12 +9775,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9889,12 +9889,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9982,12 +9982,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -10076,12 +10076,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10184,12 +10184,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10268,12 +10268,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10350,12 +10350,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10440,12 +10440,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10521,12 +10521,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10615,12 +10615,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10686,12 +10686,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10784,12 +10784,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10871,12 +10871,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10961,12 +10961,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11041,12 +11041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11116,12 +11116,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11205,12 +11205,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11294,12 +11294,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11388,12 +11388,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11481,12 +11481,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11593,12 +11593,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11701,12 +11701,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11807,12 +11807,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11927,12 +11927,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12020,12 +12020,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12121,12 +12121,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12226,12 +12226,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12301,12 +12301,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12385,12 +12385,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12483,12 +12483,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12573,12 +12573,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12658,12 +12658,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12754,12 +12754,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12828,12 +12828,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12922,12 +12922,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13069,12 +13069,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13163,12 +13163,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13249,12 +13249,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13371,12 +13371,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13436,12 +13436,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13525,12 +13525,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13608,12 +13608,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13679,12 +13679,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13763,12 +13763,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13836,12 +13836,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13932,12 +13932,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13997,12 +13997,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14080,12 +14080,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14157,12 +14157,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14229,12 +14229,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14321,12 +14321,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14399,12 +14399,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14479,12 +14479,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14550,12 +14550,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14622,12 +14622,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14714,12 +14714,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14791,12 +14791,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14874,12 +14874,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14958,12 +14958,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15056,12 +15056,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15157,12 +15157,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15228,12 +15228,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15463,12 +15463,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15550,12 +15550,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15632,12 +15632,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15734,12 +15734,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15817,12 +15817,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15914,12 +15914,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16042,12 +16042,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16167,12 +16167,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16229,12 +16229,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16309,12 +16309,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16383,12 +16383,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16466,12 +16466,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16563,12 +16563,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16647,12 +16647,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16785,12 +16785,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16871,12 +16871,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16936,12 +16936,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17047,12 +17047,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17161,12 +17161,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17267,12 +17267,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17344,12 +17344,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17434,12 +17434,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17522,12 +17522,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17633,12 +17633,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17741,12 +17741,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17816,12 +17816,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17895,12 +17895,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17968,12 +17968,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18041,12 +18041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18118,12 +18118,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18206,12 +18206,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18272,12 +18272,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18346,12 +18346,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18438,12 +18438,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18531,12 +18531,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18635,12 +18635,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18718,12 +18718,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18801,12 +18801,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18882,12 +18882,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18953,12 +18953,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19024,12 +19024,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19083,12 +19083,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19143,12 +19143,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19214,12 +19214,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19273,12 +19273,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19332,12 +19332,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19394,12 +19394,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19456,12 +19456,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19518,12 +19518,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19641,12 +19641,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19729,12 +19729,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19813,12 +19813,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19890,12 +19890,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19965,12 +19965,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20057,12 +20057,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20122,12 +20122,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20196,12 +20196,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20270,12 +20270,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20345,12 +20345,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20434,12 +20434,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20514,12 +20514,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20610,12 +20610,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20687,12 +20687,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20764,12 +20764,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20860,12 +20860,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20950,12 +20950,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21038,12 +21038,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21126,12 +21126,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21203,12 +21203,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21268,12 +21268,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21342,12 +21342,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21418,12 +21418,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21504,12 +21504,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21589,12 +21589,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21672,12 +21672,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21766,12 +21766,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21846,12 +21846,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21935,12 +21935,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22025,12 +22025,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22134,12 +22134,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22233,12 +22233,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22333,12 +22333,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22400,12 +22400,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22479,12 +22479,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22556,12 +22556,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22630,12 +22630,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22707,12 +22707,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22785,12 +22785,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22856,12 +22856,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22929,12 +22929,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23000,12 +23000,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23082,12 +23082,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23164,12 +23164,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23285,12 +23285,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23367,12 +23367,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23446,12 +23446,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23576,12 +23576,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23813,12 +23813,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23904,12 +23904,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24019,12 +24019,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24150,12 +24150,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24272,12 +24272,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24340,12 +24340,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24406,12 +24406,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24484,12 +24484,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24562,12 +24562,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24639,12 +24639,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24710,12 +24710,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24781,12 +24781,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24858,12 +24858,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24944,12 +24944,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25036,12 +25036,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25125,12 +25125,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25211,12 +25211,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25298,12 +25298,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25372,12 +25372,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25450,12 +25450,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25530,12 +25530,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25608,12 +25608,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25694,12 +25694,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25765,12 +25765,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25840,12 +25840,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25915,12 +25915,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25987,12 +25987,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26073,12 +26073,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26161,12 +26161,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26229,12 +26229,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26306,12 +26306,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26374,12 +26374,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26448,12 +26448,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26525,12 +26525,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26605,12 +26605,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26694,12 +26694,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26798,12 +26798,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26878,12 +26878,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26964,12 +26964,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27050,12 +27050,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27128,12 +27128,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27226,12 +27226,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27314,12 +27314,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27397,12 +27397,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27481,12 +27481,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27567,12 +27567,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27653,12 +27653,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27739,12 +27739,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27819,12 +27819,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27906,12 +27906,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27987,12 +27987,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28083,12 +28083,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28145,12 +28145,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28219,12 +28219,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28278,12 +28278,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28340,12 +28340,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28416,12 +28416,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28490,12 +28490,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28579,12 +28579,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28656,12 +28656,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28747,12 +28747,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28817,12 +28817,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28902,12 +28902,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28982,12 +28982,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29053,12 +29053,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -29122,12 +29122,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29202,12 +29202,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29277,12 +29277,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29352,12 +29352,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29430,12 +29430,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29506,12 +29506,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29596,12 +29596,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29683,12 +29683,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29784,12 +29784,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29879,12 +29879,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29969,12 +29969,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30042,12 +30042,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30128,12 +30128,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30238,12 +30238,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30324,12 +30324,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30392,12 +30392,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30477,12 +30477,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30557,12 +30557,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30634,12 +30634,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30711,12 +30711,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30788,12 +30788,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30863,12 +30863,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30952,12 +30952,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31105,12 +31105,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31170,12 +31170,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31253,12 +31253,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31329,12 +31329,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31397,12 +31397,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31459,12 +31459,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31533,12 +31533,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31604,12 +31604,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31678,12 +31678,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31749,12 +31749,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -31821,12 +31821,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31907,12 +31907,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31987,12 +31987,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32072,12 +32072,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32152,12 +32152,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32220,12 +32220,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32297,12 +32297,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32378,12 +32378,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32462,12 +32462,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32543,12 +32543,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32627,12 +32627,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32709,12 +32709,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32805,12 +32805,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32898,12 +32898,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32997,12 +32997,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33090,12 +33090,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33167,12 +33167,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33247,12 +33247,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33338,12 +33338,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33386,12 +33386,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33459,12 +33459,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33531,12 +33531,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33605,12 +33605,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 0b6ce6fcc1..a9d2ecee38 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 @@ -30147,13 +30147,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -30190,13 +30190,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -30234,13 +30234,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -30278,13 +30278,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -30320,13 +30320,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -30367,13 +30367,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -30422,13 +30422,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -30476,13 +30476,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -30537,7 +30537,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ @@ -30545,7 +30545,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -30587,13 +30587,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -30639,7 +30639,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ @@ -30647,7 +30647,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -30697,13 +30697,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -30752,13 +30752,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -30814,7 +30814,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ @@ -30822,7 +30822,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -30887,13 +30887,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -30943,7 +30943,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ @@ -30951,7 +30951,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -30997,13 +30997,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" @@ -31050,13 +31050,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -31111,7 +31111,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ @@ -31119,7 +31119,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -31165,13 +31165,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" @@ -31210,13 +31210,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -31256,13 +31256,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -31319,7 +31319,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -31327,7 +31327,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -31367,13 +31367,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -31410,13 +31410,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -31464,7 +31464,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ @@ -31472,7 +31472,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -31522,7 +31522,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ @@ -31530,7 +31530,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -31574,13 +31574,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -31634,7 +31634,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ @@ -31642,7 +31642,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -31698,13 +31698,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -31754,13 +31754,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -31810,13 +31810,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -31858,13 +31858,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -31911,7 +31911,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ @@ -31919,7 +31919,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -31970,13 +31970,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -32026,13 +32026,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -32091,7 +32091,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -32099,7 +32099,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32162,7 +32162,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -32170,7 +32170,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32226,13 +32226,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -32285,13 +32285,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -32341,13 +32341,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -32405,7 +32405,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ @@ -32413,7 +32413,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32468,13 +32468,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -32516,13 +32516,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -32564,7 +32564,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ @@ -32572,7 +32572,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32624,13 +32624,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -32686,7 +32686,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -32694,7 +32694,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32749,7 +32749,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -32757,7 +32757,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32795,13 +32795,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -32845,7 +32845,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ @@ -32853,7 +32853,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32891,13 +32891,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -32939,7 +32939,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ @@ -32947,7 +32947,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32988,13 +32988,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -33079,7 +33079,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ @@ -33087,7 +33087,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -33138,13 +33138,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -33213,13 +33213,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -33257,13 +33257,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -33316,7 +33316,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ @@ -33324,7 +33324,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -33362,13 +33362,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -33413,7 +33413,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ @@ -33421,7 +33421,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -33476,13 +33476,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -33527,13 +33527,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -33591,7 +33591,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ @@ -33599,7 +33599,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -33646,13 +33646,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -33830,7 +33830,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ @@ -33838,7 +33838,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -33894,13 +33894,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -33948,13 +33948,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -34012,7 +34012,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ @@ -34020,7 +34020,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -34121,13 +34121,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -34184,13 +34184,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" @@ -34238,13 +34238,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -34300,7 +34300,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ @@ -34308,7 +34308,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -34360,13 +34360,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -34414,13 +34414,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -34480,7 +34480,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ @@ -34488,7 +34488,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -34546,13 +34546,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -34605,13 +34605,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -34657,13 +34657,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -34707,13 +34707,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -34769,7 +34769,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ @@ -34777,7 +34777,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -34829,13 +34829,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -34891,7 +34891,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ @@ -34899,7 +34899,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -34957,13 +34957,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -35018,13 +35018,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -35086,7 +35086,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ @@ -35094,7 +35094,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -35150,13 +35150,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -35211,13 +35211,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -35264,13 +35264,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -35330,7 +35330,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ @@ -35338,7 +35338,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -35398,7 +35398,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ @@ -35406,7 +35406,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -35455,13 +35455,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -35517,13 +35517,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -35570,13 +35570,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -35632,13 +35632,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -35687,13 +35687,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -35752,13 +35752,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -35806,13 +35806,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" @@ -35873,7 +35873,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ @@ -35881,7 +35881,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -35944,7 +35944,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ @@ -35952,7 +35952,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -36009,7 +36009,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ @@ -36017,7 +36017,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -36079,7 +36079,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ @@ -36087,7 +36087,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -36153,13 +36153,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -36220,13 +36220,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -36284,13 +36284,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -36359,7 +36359,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ @@ -36367,7 +36367,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -36418,13 +36418,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -36472,13 +36472,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -36535,7 +36535,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ @@ -36543,7 +36543,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -36605,13 +36605,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -36670,7 +36670,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ @@ -36678,7 +36678,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -36800,7 +36800,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ @@ -36808,7 +36808,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -36861,13 +36861,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -36927,7 +36927,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ @@ -36935,7 +36935,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -36996,13 +36996,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -37062,13 +37062,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -37137,7 +37137,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ @@ -37145,7 +37145,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -37222,13 +37222,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -37280,13 +37280,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -37337,13 +37337,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -37399,7 +37399,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ @@ -37407,7 +37407,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -37459,13 +37459,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -37524,7 +37524,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ @@ -37532,7 +37532,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -37577,7 +37577,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ @@ -37585,7 +37585,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -37649,13 +37649,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -37709,7 +37709,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ @@ -37717,7 +37717,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -37779,13 +37779,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -37834,13 +37834,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -37886,13 +37886,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -37947,7 +37947,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -37955,7 +37955,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -38012,7 +38012,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -38020,7 +38020,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -38080,13 +38080,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" @@ -38144,7 +38144,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ @@ -38152,7 +38152,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -38224,13 +38224,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" @@ -38298,13 +38298,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" @@ -38371,13 +38371,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" @@ -38453,7 +38453,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ @@ -38461,7 +38461,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -38522,13 +38522,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" @@ -38592,13 +38592,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" @@ -38665,7 +38665,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ @@ -38673,7 +38673,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -38724,13 +38724,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -38785,7 +38785,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ @@ -38793,7 +38793,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -38854,13 +38854,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -38917,13 +38917,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -38977,13 +38977,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -39044,7 +39044,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ @@ -39052,7 +39052,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39099,13 +39099,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -39163,7 +39163,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ @@ -39171,7 +39171,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39226,7 +39226,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ @@ -39234,7 +39234,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39316,13 +39316,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -39373,13 +39373,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -39430,7 +39430,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ @@ -39438,7 +39438,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39491,7 +39491,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ @@ -39499,7 +39499,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39540,13 +39540,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" @@ -39598,13 +39598,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -39654,7 +39654,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ @@ -39662,7 +39662,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39716,13 +39716,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -39767,13 +39767,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -39833,7 +39833,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ @@ -39841,7 +39841,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39882,13 +39882,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -39926,13 +39926,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -39982,7 +39982,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ @@ -39990,7 +39990,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -40038,13 +40038,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -40087,13 +40087,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -40149,7 +40149,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ @@ -40157,7 +40157,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -40206,13 +40206,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -40260,7 +40260,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ @@ -40268,7 +40268,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -40312,13 +40312,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -40362,13 +40362,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -40424,7 +40424,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ @@ -40432,7 +40432,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -40480,13 +40480,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -40546,13 +40546,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -40612,13 +40612,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -40688,7 +40688,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ @@ -40696,7 +40696,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -40764,13 +40764,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -40809,13 +40809,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -40956,7 +40956,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ @@ -40964,7 +40964,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -41032,13 +41032,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -41101,13 +41101,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -41183,7 +41183,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ @@ -41191,7 +41191,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -41240,13 +41240,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -41311,7 +41311,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ @@ -41319,7 +41319,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -41403,13 +41403,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -41488,13 +41488,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -41533,13 +41533,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -41599,7 +41599,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ @@ -41607,7 +41607,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -41653,13 +41653,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -41709,7 +41709,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ @@ -41717,7 +41717,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -41779,13 +41779,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -41837,13 +41837,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -41936,13 +41936,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -41998,13 +41998,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -42042,13 +42042,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -42116,13 +42116,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -42189,13 +42189,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -42261,13 +42261,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -42310,13 +42310,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -42374,13 +42374,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -42437,13 +42437,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -42512,7 +42512,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -42520,7 +42520,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -42589,7 +42589,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -42597,7 +42597,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -42644,13 +42644,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -42698,7 +42698,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -42706,7 +42706,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -42752,7 +42752,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -42760,7 +42760,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -42808,13 +42808,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -42862,13 +42862,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -42924,7 +42924,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ @@ -42932,7 +42932,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -42973,13 +42973,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -43023,13 +43023,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -43105,13 +43105,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -43188,13 +43188,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -43281,7 +43281,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ @@ -43289,7 +43289,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43348,7 +43348,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ @@ -43356,7 +43356,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43399,13 +43399,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -43446,7 +43446,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ @@ -43454,7 +43454,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43506,7 +43506,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ @@ -43514,7 +43514,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43567,13 +43567,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -43608,13 +43608,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -43649,13 +43649,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -43698,7 +43698,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ @@ -43706,7 +43706,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43743,7 +43743,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ @@ -43751,7 +43751,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43788,7 +43788,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ @@ -43796,7 +43796,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43834,13 +43834,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -43876,13 +43876,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -43918,7 +43918,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ @@ -43926,7 +43926,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44005,13 +44005,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -44062,13 +44062,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -44119,7 +44119,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ @@ -44127,7 +44127,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44176,13 +44176,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -44228,13 +44228,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -44291,7 +44291,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ @@ -44299,7 +44299,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44340,13 +44340,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -44391,7 +44391,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ @@ -44399,7 +44399,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44447,13 +44447,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -44499,13 +44499,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -44561,7 +44561,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ @@ -44569,7 +44569,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44620,13 +44620,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -44683,13 +44683,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -44736,7 +44736,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ @@ -44744,7 +44744,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44793,7 +44793,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ @@ -44801,7 +44801,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44860,13 +44860,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -44923,13 +44923,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -44985,13 +44985,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -45045,7 +45045,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ @@ -45053,7 +45053,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -45104,13 +45104,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -45166,13 +45166,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -45229,13 +45229,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -45304,7 +45304,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ @@ -45312,7 +45312,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -45377,13 +45377,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -45447,13 +45447,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -45499,7 +45499,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ @@ -45507,7 +45507,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -45547,13 +45547,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -45597,7 +45597,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ @@ -45605,7 +45605,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -45654,13 +45654,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -45717,7 +45717,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ @@ -45725,7 +45725,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -45781,13 +45781,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -45840,13 +45840,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -45906,7 +45906,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ @@ -45914,7 +45914,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -45956,13 +45956,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -46010,7 +46010,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ @@ -46018,7 +46018,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -46063,13 +46063,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -46132,7 +46132,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ @@ -46140,7 +46140,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -46189,13 +46189,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -46243,13 +46243,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -46288,13 +46288,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -46338,13 +46338,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -46423,13 +46423,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -46468,13 +46468,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" @@ -46521,13 +46521,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -46577,13 +46577,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -46659,13 +46659,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -46712,13 +46712,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -46767,13 +46767,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -46865,13 +46865,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -47074,13 +47074,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -47144,13 +47144,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -47231,13 +47231,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -47325,13 +47325,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -47371,13 +47371,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -47416,13 +47416,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -47469,7 +47469,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -47477,7 +47477,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -47526,7 +47526,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -47534,7 +47534,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -47584,7 +47584,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ @@ -47592,7 +47592,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -47638,13 +47638,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -47683,13 +47683,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -47735,7 +47735,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ @@ -47743,7 +47743,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -47795,13 +47795,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -47858,7 +47858,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ @@ -47866,7 +47866,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -47924,13 +47924,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -47980,13 +47980,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -48042,13 +48042,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -48093,13 +48093,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -48148,7 +48148,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ @@ -48156,7 +48156,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48207,13 +48207,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -48261,13 +48261,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -48320,7 +48320,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ @@ -48328,7 +48328,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48370,13 +48370,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" @@ -48421,7 +48421,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ @@ -48429,7 +48429,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48476,13 +48476,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" @@ -48525,13 +48525,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -48583,7 +48583,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ @@ -48591,7 +48591,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48647,7 +48647,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ @@ -48655,7 +48655,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48697,13 +48697,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -48749,7 +48749,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ @@ -48757,7 +48757,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48797,13 +48797,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -48847,7 +48847,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ @@ -48855,7 +48855,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48903,13 +48903,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -48958,13 +48958,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -49018,7 +49018,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ @@ -49026,7 +49026,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49095,13 +49095,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -49147,13 +49147,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -49205,7 +49205,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ @@ -49213,7 +49213,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49267,13 +49267,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -49321,13 +49321,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -49387,7 +49387,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ @@ -49395,7 +49395,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49450,7 +49450,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ @@ -49458,7 +49458,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49510,13 +49510,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" @@ -49567,13 +49567,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" @@ -49625,7 +49625,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ @@ -49633,7 +49633,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49687,7 +49687,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ @@ -49695,7 +49695,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49746,13 +49746,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" @@ -49797,13 +49797,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -49856,7 +49856,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ @@ -49864,7 +49864,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49917,13 +49917,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -49983,7 +49983,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ @@ -49991,7 +49991,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50029,13 +50029,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -50082,7 +50082,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ @@ -50090,7 +50090,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50130,13 +50130,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -50172,13 +50172,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -50223,7 +50223,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ @@ -50231,7 +50231,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50278,13 +50278,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -50335,13 +50335,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -50388,13 +50388,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -50450,7 +50450,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ @@ -50458,7 +50458,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50502,7 +50502,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ @@ -50510,7 +50510,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50561,13 +50561,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -50616,13 +50616,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -50671,7 +50671,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -50679,7 +50679,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50729,13 +50729,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -50776,13 +50776,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -50830,7 +50830,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ @@ -50838,7 +50838,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50882,13 +50882,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -50933,7 +50933,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ @@ -50941,7 +50941,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50991,13 +50991,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -51044,13 +51044,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -51106,7 +51106,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ @@ -51114,7 +51114,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -51167,13 +51167,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -51233,7 +51233,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ @@ -51241,7 +51241,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -51303,13 +51303,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -51366,13 +51366,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -51416,7 +51416,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ @@ -51424,7 +51424,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -51480,13 +51480,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -51557,13 +51557,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -51619,13 +51619,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -51665,13 +51665,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -51727,13 +51727,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -51781,13 +51781,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -51833,7 +51833,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -51841,7 +51841,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -51889,7 +51889,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -51897,7 +51897,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -51945,13 +51945,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -51998,13 +51998,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -52059,7 +52059,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ @@ -52067,7 +52067,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -52169,13 +52169,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -52228,13 +52228,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -52288,13 +52288,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -52332,13 +52332,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -52378,13 +52378,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -52421,13 +52421,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -52471,7 +52471,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ @@ -52479,7 +52479,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -52521,13 +52521,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" @@ -52571,7 +52571,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ @@ -52579,7 +52579,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -52623,13 +52623,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" @@ -52672,13 +52672,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -52730,7 +52730,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ @@ -52738,7 +52738,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -52786,13 +52786,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" @@ -52843,7 +52843,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ @@ -52851,7 +52851,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -52901,13 +52901,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" @@ -52947,13 +52947,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -52999,7 +52999,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ @@ -53007,7 +53007,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -53055,13 +53055,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -53112,7 +53112,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ @@ -53120,7 +53120,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -53174,13 +53174,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -53231,13 +53231,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -53297,7 +53297,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ @@ -53305,7 +53305,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -53363,13 +53363,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -53431,7 +53431,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ @@ -53439,7 +53439,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -53500,13 +53500,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -53555,13 +53555,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -53604,13 +53604,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -53660,13 +53660,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -53722,7 +53722,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ @@ -53730,7 +53730,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -53762,13 +53762,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" @@ -53817,7 +53817,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -53825,7 +53825,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -53873,13 +53873,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -53923,13 +53923,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" 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 49fe3b614d..5164622895 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,12 +251,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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\"" + "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", @@ -313,12 +313,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -381,12 +381,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -449,12 +449,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -508,12 +508,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -579,12 +579,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -657,12 +657,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -733,12 +733,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -820,12 +820,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -888,12 +888,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -965,12 +965,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1043,12 +1043,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1122,12 +1122,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1212,12 +1212,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1315,12 +1315,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1392,12 +1392,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1464,12 +1464,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -1540,12 +1540,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1624,12 +1624,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -1696,12 +1696,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1761,12 +1761,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1832,12 +1832,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -1923,12 +1923,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2002,12 +2002,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2067,12 +2067,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -2130,12 +2130,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2210,12 +2210,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2291,12 +2291,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2366,12 +2366,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2459,12 +2459,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2539,12 +2539,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2620,12 +2620,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2702,12 +2702,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2773,12 +2773,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -2847,12 +2847,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -2922,12 +2922,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -2998,12 +2998,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3085,12 +3085,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3175,12 +3175,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3262,12 +3262,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3349,12 +3349,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3426,12 +3426,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3515,12 +3515,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3601,12 +3601,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3676,12 +3676,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -3747,12 +3747,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -3828,12 +3828,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -3923,12 +3923,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4009,12 +4009,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4071,12 +4071,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4145,12 +4145,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4207,12 +4207,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4278,12 +4278,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4349,12 +4349,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4481,12 +4481,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4559,12 +4559,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -4666,12 +4666,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4731,12 +4731,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4818,12 +4818,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -4880,12 +4880,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -4955,12 +4955,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5041,12 +5041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5115,12 +5115,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5208,12 +5208,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5288,12 +5288,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5378,12 +5378,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5468,12 +5468,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5553,12 +5553,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5638,12 +5638,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5726,12 +5726,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -5804,12 +5804,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -5897,12 +5897,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -5980,12 +5980,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6069,12 +6069,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6149,12 +6149,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6232,12 +6232,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6324,12 +6324,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6413,12 +6413,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -6497,12 +6497,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6571,12 +6571,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6643,12 +6643,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6729,12 +6729,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6815,12 +6815,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -6901,12 +6901,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -6987,12 +6987,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7074,12 +7074,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7151,12 +7151,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7240,12 +7240,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -7327,12 +7327,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7425,12 +7425,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7522,12 +7522,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7616,12 +7616,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -7693,12 +7693,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7782,12 +7782,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7859,12 +7859,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -7948,12 +7948,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8032,12 +8032,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8125,12 +8125,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8202,12 +8202,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8299,12 +8299,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8396,12 +8396,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8484,12 +8484,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8580,12 +8580,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -8681,12 +8681,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8776,12 +8776,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -8866,12 +8866,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -8973,12 +8973,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9052,12 +9052,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9130,12 +9130,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9221,12 +9221,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9318,12 +9318,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9412,12 +9412,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9592,12 +9592,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9679,12 +9679,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9775,12 +9775,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -9889,12 +9889,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -9982,12 +9982,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -10076,12 +10076,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10184,12 +10184,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10268,12 +10268,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10350,12 +10350,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10440,12 +10440,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10521,12 +10521,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10615,12 +10615,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10686,12 +10686,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10784,12 +10784,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -10871,12 +10871,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -10961,12 +10961,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11041,12 +11041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11116,12 +11116,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11205,12 +11205,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11294,12 +11294,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11388,12 +11388,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11481,12 +11481,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -11593,12 +11593,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11701,12 +11701,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -11807,12 +11807,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -11927,12 +11927,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12020,12 +12020,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12121,12 +12121,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12226,12 +12226,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12301,12 +12301,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12385,12 +12385,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12483,12 +12483,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12573,12 +12573,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -12658,12 +12658,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12754,12 +12754,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -12828,12 +12828,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -12922,12 +12922,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13069,12 +13069,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13163,12 +13163,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13249,12 +13249,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13371,12 +13371,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13436,12 +13436,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13525,12 +13525,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13608,12 +13608,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13679,12 +13679,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13763,12 +13763,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -13836,12 +13836,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -13932,12 +13932,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -13997,12 +13997,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14080,12 +14080,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14157,12 +14157,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14229,12 +14229,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14321,12 +14321,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14399,12 +14399,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14479,12 +14479,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14550,12 +14550,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14622,12 +14622,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14714,12 +14714,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -14791,12 +14791,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -14874,12 +14874,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -14958,12 +14958,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15056,12 +15056,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15157,12 +15157,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15228,12 +15228,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15463,12 +15463,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15550,12 +15550,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -15632,12 +15632,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15734,12 +15734,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -15817,12 +15817,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -15914,12 +15914,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16042,12 +16042,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16167,12 +16167,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16229,12 +16229,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16309,12 +16309,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16383,12 +16383,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16466,12 +16466,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -16563,12 +16563,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -16647,12 +16647,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16785,12 +16785,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16871,12 +16871,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -16936,12 +16936,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17047,12 +17047,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17161,12 +17161,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17267,12 +17267,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17344,12 +17344,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17434,12 +17434,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -17522,12 +17522,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17633,12 +17633,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17741,12 +17741,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17816,12 +17816,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -17895,12 +17895,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -17968,12 +17968,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18041,12 +18041,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18118,12 +18118,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18206,12 +18206,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18272,12 +18272,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18346,12 +18346,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18438,12 +18438,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -18531,12 +18531,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18635,12 +18635,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18718,12 +18718,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18801,12 +18801,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -18882,12 +18882,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -18953,12 +18953,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19024,12 +19024,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19083,12 +19083,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19143,12 +19143,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19214,12 +19214,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19273,12 +19273,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19332,12 +19332,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19394,12 +19394,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19456,12 +19456,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19518,12 +19518,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19641,12 +19641,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19729,12 +19729,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -19813,12 +19813,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -19890,12 +19890,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -19965,12 +19965,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20057,12 +20057,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20122,12 +20122,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20196,12 +20196,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20270,12 +20270,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -20345,12 +20345,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20434,12 +20434,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20514,12 +20514,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20610,12 +20610,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20687,12 +20687,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20764,12 +20764,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -20860,12 +20860,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -20950,12 +20950,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21038,12 +21038,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21126,12 +21126,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21203,12 +21203,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21268,12 +21268,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21342,12 +21342,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21418,12 +21418,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21504,12 +21504,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21589,12 +21589,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -21672,12 +21672,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21766,12 +21766,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -21846,12 +21846,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -21935,12 +21935,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22025,12 +22025,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22134,12 +22134,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22233,12 +22233,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22333,12 +22333,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22400,12 +22400,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22479,12 +22479,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22556,12 +22556,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22630,12 +22630,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -22707,12 +22707,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -22785,12 +22785,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22856,12 +22856,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -22929,12 +22929,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23000,12 +23000,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23082,12 +23082,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23164,12 +23164,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23285,12 +23285,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23367,12 +23367,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23446,12 +23446,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23576,12 +23576,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23813,12 +23813,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -23904,12 +23904,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24019,12 +24019,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24150,12 +24150,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24272,12 +24272,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24340,12 +24340,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24406,12 +24406,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24484,12 +24484,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24562,12 +24562,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24639,12 +24639,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24710,12 +24710,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24781,12 +24781,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -24858,12 +24858,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -24944,12 +24944,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25036,12 +25036,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25125,12 +25125,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25211,12 +25211,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25298,12 +25298,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25372,12 +25372,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25450,12 +25450,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25530,12 +25530,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25608,12 +25608,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25694,12 +25694,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25765,12 +25765,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -25840,12 +25840,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -25915,12 +25915,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -25987,12 +25987,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26073,12 +26073,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26161,12 +26161,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26229,12 +26229,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26306,12 +26306,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26374,12 +26374,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26448,12 +26448,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26525,12 +26525,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -26605,12 +26605,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26694,12 +26694,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -26798,12 +26798,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26878,12 +26878,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -26964,12 +26964,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27050,12 +27050,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27128,12 +27128,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27226,12 +27226,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27314,12 +27314,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27397,12 +27397,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -27481,12 +27481,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27567,12 +27567,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27653,12 +27653,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27739,12 +27739,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27819,12 +27819,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -27906,12 +27906,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -27987,12 +27987,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28083,12 +28083,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28145,12 +28145,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28219,12 +28219,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28278,12 +28278,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28340,12 +28340,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28416,12 +28416,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28490,12 +28490,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28579,12 +28579,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28656,12 +28656,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -28747,12 +28747,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28818,12 +28818,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -28895,12 +28895,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -28975,12 +28975,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29056,12 +29056,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29142,12 +29142,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29212,12 +29212,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29297,12 +29297,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29377,12 +29377,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29448,12 +29448,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", "label": "curl (Digest)", - "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}\"" + "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", @@ -29517,12 +29517,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29597,12 +29597,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29672,12 +29672,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29747,12 +29747,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -29825,12 +29825,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -29901,12 +29901,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -29991,12 +29991,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30078,12 +30078,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30179,12 +30179,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30274,12 +30274,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -30364,12 +30364,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30437,12 +30437,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -30523,12 +30523,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30633,12 +30633,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30719,12 +30719,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30787,12 +30787,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30872,12 +30872,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -30952,12 +30952,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31029,12 +31029,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31106,12 +31106,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31183,12 +31183,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -31258,12 +31258,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31347,12 +31347,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -31500,12 +31500,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31565,12 +31565,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31648,12 +31648,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31724,12 +31724,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31815,12 +31815,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31883,12 +31883,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -31945,12 +31945,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32019,12 +32019,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32090,12 +32090,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32164,12 +32164,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32235,12 +32235,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32307,12 +32307,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32393,12 +32393,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32473,12 +32473,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32558,12 +32558,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32638,12 +32638,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -32706,12 +32706,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32783,12 +32783,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -32864,12 +32864,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -32948,12 +32948,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33029,12 +33029,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33113,12 +33113,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33195,12 +33195,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33291,12 +33291,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/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/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33384,12 +33384,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33483,12 +33483,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33576,12 +33576,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33653,12 +33653,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33733,12 +33733,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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}\"" + "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", @@ -33824,12 +33824,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/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/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -33872,12 +33872,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -33945,12 +33945,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC-KEY}:${PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/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/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", @@ -34017,12 +34017,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\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\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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", @@ -34091,12 +34091,12 @@ { "lang": "cURL", "label": "curl (Service Account Access Token)", - "source": "curl --header \"Authorization: Bearer ${ACCESS-TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", - "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\"" + "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 586b496f20..66d75337ba 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 @@ -30559,13 +30559,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" @@ -30602,13 +30602,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" @@ -30646,13 +30646,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" @@ -30690,13 +30690,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" @@ -30732,13 +30732,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" @@ -30779,13 +30779,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" @@ -30834,13 +30834,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" @@ -30888,13 +30888,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" @@ -30949,7 +30949,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ @@ -30957,7 +30957,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -30999,13 +30999,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" @@ -31051,7 +31051,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ @@ -31059,7 +31059,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31109,13 +31109,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" @@ -31164,13 +31164,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" @@ -31226,7 +31226,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ @@ -31234,7 +31234,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31299,13 +31299,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" @@ -31355,7 +31355,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ @@ -31363,7 +31363,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31409,13 +31409,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" @@ -31462,13 +31462,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" @@ -31523,7 +31523,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ @@ -31531,7 +31531,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31577,13 +31577,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" @@ -31622,13 +31622,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" @@ -31668,13 +31668,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" @@ -31731,7 +31731,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -31739,7 +31739,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31779,13 +31779,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" @@ -31822,13 +31822,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" @@ -31876,7 +31876,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ @@ -31884,7 +31884,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31934,7 +31934,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ @@ -31942,7 +31942,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31986,13 +31986,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" @@ -32046,7 +32046,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ @@ -32054,7 +32054,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -32110,13 +32110,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" @@ -32166,13 +32166,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" @@ -32222,13 +32222,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" @@ -32270,13 +32270,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" @@ -32323,7 +32323,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ @@ -32331,7 +32331,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -32382,13 +32382,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" @@ -32438,13 +32438,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" @@ -32503,7 +32503,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -32511,7 +32511,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -32574,7 +32574,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ @@ -32582,7 +32582,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -32638,13 +32638,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" @@ -32697,13 +32697,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" @@ -32753,13 +32753,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" @@ -32817,7 +32817,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ @@ -32825,7 +32825,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -32880,13 +32880,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" @@ -32928,13 +32928,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" @@ -32976,7 +32976,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ @@ -32984,7 +32984,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33036,13 +33036,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" @@ -33098,7 +33098,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -33106,7 +33106,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33161,7 +33161,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ @@ -33169,7 +33169,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33207,13 +33207,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" @@ -33257,7 +33257,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ @@ -33265,7 +33265,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33303,13 +33303,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" @@ -33351,7 +33351,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ @@ -33359,7 +33359,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33400,13 +33400,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" @@ -33491,7 +33491,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ @@ -33499,7 +33499,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33550,13 +33550,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" @@ -33625,13 +33625,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" @@ -33669,13 +33669,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" @@ -33728,7 +33728,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ @@ -33736,7 +33736,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33774,13 +33774,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" @@ -33825,7 +33825,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ @@ -33833,7 +33833,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33888,13 +33888,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" @@ -33939,13 +33939,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" @@ -34003,7 +34003,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ @@ -34011,7 +34011,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -34058,13 +34058,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" @@ -34242,7 +34242,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ @@ -34250,7 +34250,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -34306,13 +34306,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" @@ -34360,13 +34360,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" @@ -34424,7 +34424,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ @@ -34432,7 +34432,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -34533,13 +34533,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -34596,13 +34596,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" @@ -34650,13 +34650,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" @@ -34712,7 +34712,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ @@ -34720,7 +34720,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -34772,13 +34772,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" @@ -34826,13 +34826,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" @@ -34892,7 +34892,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ @@ -34900,7 +34900,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -34958,13 +34958,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" @@ -35017,13 +35017,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -35069,13 +35069,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" @@ -35119,13 +35119,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" @@ -35181,7 +35181,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ @@ -35189,7 +35189,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -35241,13 +35241,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" @@ -35303,7 +35303,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ @@ -35311,7 +35311,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -35369,13 +35369,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" @@ -35430,13 +35430,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -35498,7 +35498,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ @@ -35506,7 +35506,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -35562,13 +35562,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" @@ -35623,13 +35623,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" @@ -35676,13 +35676,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" @@ -35742,7 +35742,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ @@ -35750,7 +35750,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -35810,7 +35810,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ @@ -35818,7 +35818,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -35867,13 +35867,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" @@ -35929,13 +35929,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" @@ -35982,13 +35982,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" @@ -36044,13 +36044,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" @@ -36099,13 +36099,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" @@ -36164,13 +36164,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" @@ -36218,13 +36218,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" @@ -36285,7 +36285,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ @@ -36293,7 +36293,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -36356,7 +36356,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ @@ -36364,7 +36364,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -36421,7 +36421,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ @@ -36429,7 +36429,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -36491,7 +36491,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ @@ -36499,7 +36499,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -36565,13 +36565,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" @@ -36632,13 +36632,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" @@ -36696,13 +36696,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" @@ -36771,7 +36771,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ @@ -36779,7 +36779,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -36830,13 +36830,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" @@ -36884,13 +36884,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" @@ -36947,7 +36947,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ @@ -36955,7 +36955,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37017,13 +37017,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" @@ -37082,7 +37082,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ @@ -37090,7 +37090,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37212,7 +37212,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ @@ -37220,7 +37220,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37273,13 +37273,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" @@ -37339,7 +37339,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ @@ -37347,7 +37347,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37408,13 +37408,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" @@ -37474,13 +37474,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" @@ -37549,7 +37549,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ @@ -37557,7 +37557,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37634,13 +37634,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" @@ -37692,13 +37692,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" @@ -37749,13 +37749,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" @@ -37811,7 +37811,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ @@ -37819,7 +37819,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37871,13 +37871,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" @@ -37936,7 +37936,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ @@ -37944,7 +37944,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37989,7 +37989,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ @@ -37997,7 +37997,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -38061,13 +38061,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" @@ -38121,7 +38121,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ @@ -38129,7 +38129,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -38191,13 +38191,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" @@ -38246,13 +38246,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" @@ -38298,13 +38298,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" @@ -38359,7 +38359,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -38367,7 +38367,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -38424,7 +38424,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ @@ -38432,7 +38432,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -38492,13 +38492,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" @@ -38556,7 +38556,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ @@ -38564,7 +38564,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -38636,13 +38636,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" @@ -38710,13 +38710,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" @@ -38783,13 +38783,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" @@ -38865,7 +38865,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ @@ -38873,7 +38873,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -38934,13 +38934,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" @@ -39004,13 +39004,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" @@ -39077,7 +39077,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ @@ -39085,7 +39085,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39136,13 +39136,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" @@ -39197,7 +39197,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ @@ -39205,7 +39205,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39266,13 +39266,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" @@ -39329,13 +39329,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" @@ -39389,13 +39389,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" @@ -39456,7 +39456,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ @@ -39464,7 +39464,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39511,13 +39511,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" @@ -39575,7 +39575,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ @@ -39583,7 +39583,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39638,7 +39638,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ @@ -39646,7 +39646,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39728,13 +39728,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" @@ -39785,13 +39785,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" @@ -39842,7 +39842,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ @@ -39850,7 +39850,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39903,7 +39903,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ @@ -39911,7 +39911,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39952,13 +39952,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" @@ -40010,13 +40010,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" @@ -40066,7 +40066,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ @@ -40074,7 +40074,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -40128,13 +40128,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" @@ -40179,13 +40179,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" @@ -40245,7 +40245,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ @@ -40253,7 +40253,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -40294,13 +40294,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" @@ -40338,13 +40338,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" @@ -40394,7 +40394,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ @@ -40402,7 +40402,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -40450,13 +40450,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" @@ -40499,13 +40499,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" @@ -40561,7 +40561,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ @@ -40569,7 +40569,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -40618,13 +40618,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" @@ -40672,7 +40672,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ @@ -40680,7 +40680,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -40724,13 +40724,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" @@ -40774,13 +40774,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" @@ -40836,7 +40836,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ @@ -40844,7 +40844,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -40892,13 +40892,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" @@ -40958,13 +40958,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" @@ -41024,13 +41024,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" @@ -41100,7 +41100,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ @@ -41108,7 +41108,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -41176,13 +41176,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" @@ -41221,13 +41221,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" @@ -41368,7 +41368,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ @@ -41376,7 +41376,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -41444,13 +41444,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" @@ -41513,13 +41513,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" @@ -41595,7 +41595,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ @@ -41603,7 +41603,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -41652,13 +41652,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" @@ -41723,7 +41723,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ @@ -41731,7 +41731,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -41815,13 +41815,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" @@ -41900,13 +41900,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" @@ -41945,13 +41945,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" @@ -42011,7 +42011,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ @@ -42019,7 +42019,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -42065,13 +42065,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" @@ -42121,7 +42121,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ @@ -42129,7 +42129,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -42191,13 +42191,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" @@ -42249,13 +42249,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" @@ -42348,13 +42348,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" @@ -42410,13 +42410,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" @@ -42454,13 +42454,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" @@ -42528,13 +42528,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" @@ -42601,13 +42601,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" @@ -42673,13 +42673,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" @@ -42722,13 +42722,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" @@ -42786,13 +42786,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" @@ -42849,13 +42849,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" @@ -42924,7 +42924,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -42932,7 +42932,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43001,7 +43001,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ @@ -43009,7 +43009,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43056,13 +43056,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" @@ -43110,7 +43110,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -43118,7 +43118,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43164,7 +43164,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ @@ -43172,7 +43172,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43220,13 +43220,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" @@ -43274,13 +43274,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" @@ -43336,7 +43336,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ @@ -43344,7 +43344,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43385,13 +43385,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" @@ -43435,13 +43435,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" @@ -43517,13 +43517,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" @@ -43600,13 +43600,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" @@ -43693,7 +43693,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ @@ -43701,7 +43701,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43760,7 +43760,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ @@ -43768,7 +43768,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43811,13 +43811,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" @@ -43858,7 +43858,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ @@ -43866,7 +43866,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43918,7 +43918,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ @@ -43926,7 +43926,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43979,13 +43979,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" @@ -44020,13 +44020,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" @@ -44061,13 +44061,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" @@ -44110,7 +44110,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ @@ -44118,7 +44118,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44155,7 +44155,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ @@ -44163,7 +44163,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44200,7 +44200,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ @@ -44208,7 +44208,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44246,13 +44246,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" @@ -44288,13 +44288,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" @@ -44330,7 +44330,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ @@ -44338,7 +44338,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44417,13 +44417,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" @@ -44474,13 +44474,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" @@ -44531,7 +44531,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ @@ -44539,7 +44539,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44588,13 +44588,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" @@ -44640,13 +44640,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" @@ -44703,7 +44703,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ @@ -44711,7 +44711,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44752,13 +44752,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" @@ -44803,7 +44803,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ @@ -44811,7 +44811,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44859,13 +44859,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" @@ -44911,13 +44911,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" @@ -44973,7 +44973,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ @@ -44981,7 +44981,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -45032,13 +45032,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" @@ -45095,13 +45095,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" @@ -45148,7 +45148,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ @@ -45156,7 +45156,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -45205,7 +45205,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ @@ -45213,7 +45213,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -45272,13 +45272,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" @@ -45335,13 +45335,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" @@ -45397,13 +45397,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" @@ -45457,7 +45457,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ @@ -45465,7 +45465,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -45516,13 +45516,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" @@ -45578,13 +45578,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" @@ -45641,13 +45641,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" @@ -45716,7 +45716,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ @@ -45724,7 +45724,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -45789,13 +45789,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" @@ -45859,13 +45859,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" @@ -45911,7 +45911,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ @@ -45919,7 +45919,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -45959,13 +45959,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" @@ -46009,7 +46009,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ @@ -46017,7 +46017,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -46066,13 +46066,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" @@ -46129,7 +46129,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ @@ -46137,7 +46137,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -46193,13 +46193,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" @@ -46252,13 +46252,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" @@ -46318,7 +46318,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ @@ -46326,7 +46326,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -46368,13 +46368,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" @@ -46422,7 +46422,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ @@ -46430,7 +46430,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -46475,13 +46475,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" @@ -46544,7 +46544,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ @@ -46552,7 +46552,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -46601,13 +46601,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" @@ -46655,13 +46655,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" @@ -46700,13 +46700,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" @@ -46750,13 +46750,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" @@ -46835,13 +46835,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" @@ -46880,13 +46880,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" @@ -46933,13 +46933,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" @@ -46989,13 +46989,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" @@ -47071,13 +47071,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" @@ -47124,13 +47124,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" @@ -47179,13 +47179,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" @@ -47277,13 +47277,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" @@ -47486,13 +47486,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" @@ -47556,13 +47556,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" @@ -47643,13 +47643,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" @@ -47737,13 +47737,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" @@ -47783,13 +47783,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" @@ -47828,13 +47828,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" @@ -47881,7 +47881,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -47889,7 +47889,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -47938,7 +47938,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ @@ -47946,7 +47946,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -47996,7 +47996,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ @@ -48004,7 +48004,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48050,13 +48050,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" @@ -48095,13 +48095,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" @@ -48147,7 +48147,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ @@ -48155,7 +48155,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48207,13 +48207,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" @@ -48270,7 +48270,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ @@ -48278,7 +48278,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48336,13 +48336,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" @@ -48392,13 +48392,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" @@ -48454,13 +48454,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" @@ -48505,13 +48505,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" @@ -48560,7 +48560,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ @@ -48568,7 +48568,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48619,13 +48619,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" @@ -48673,13 +48673,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" @@ -48732,7 +48732,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ @@ -48740,7 +48740,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48782,13 +48782,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" @@ -48833,7 +48833,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ @@ -48841,7 +48841,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48888,13 +48888,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" @@ -48937,13 +48937,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -48995,7 +48995,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ @@ -49003,7 +49003,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49059,7 +49059,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ @@ -49067,7 +49067,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49109,13 +49109,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" @@ -49161,7 +49161,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ @@ -49169,7 +49169,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49209,13 +49209,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" @@ -49259,7 +49259,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ @@ -49267,7 +49267,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49315,13 +49315,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" @@ -49370,13 +49370,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" @@ -49430,7 +49430,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ @@ -49438,7 +49438,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49507,13 +49507,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" @@ -49559,13 +49559,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" @@ -49617,7 +49617,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ @@ -49625,7 +49625,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49679,13 +49679,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" @@ -49733,13 +49733,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" @@ -49799,7 +49799,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ @@ -49807,7 +49807,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49862,7 +49862,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ @@ -49870,7 +49870,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49922,13 +49922,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" @@ -49979,13 +49979,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" @@ -50037,7 +50037,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ @@ -50045,7 +50045,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50099,7 +50099,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ @@ -50107,7 +50107,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50158,13 +50158,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" @@ -50209,13 +50209,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" @@ -50268,7 +50268,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ @@ -50276,7 +50276,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50329,13 +50329,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" @@ -50395,7 +50395,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ @@ -50403,7 +50403,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50441,13 +50441,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" @@ -50494,7 +50494,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ @@ -50502,7 +50502,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50542,13 +50542,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" @@ -50584,13 +50584,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" @@ -50635,7 +50635,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ @@ -50643,7 +50643,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50690,13 +50690,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" @@ -50747,13 +50747,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" @@ -50800,13 +50800,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" @@ -50862,7 +50862,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ @@ -50870,7 +50870,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50911,13 +50911,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss?pretty=true" @@ -50963,7 +50963,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss" \ @@ -50971,7 +50971,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51022,13 +51022,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" @@ -51078,13 +51078,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}?pretty=true" @@ -51137,7 +51137,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" \ @@ -51145,7 +51145,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51189,7 +51189,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ @@ -51197,7 +51197,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51248,13 +51248,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" @@ -51303,13 +51303,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" @@ -51358,7 +51358,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -51366,7 +51366,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51416,13 +51416,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" @@ -51463,13 +51463,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" @@ -51517,7 +51517,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ @@ -51525,7 +51525,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51569,13 +51569,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" @@ -51620,7 +51620,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ @@ -51628,7 +51628,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51678,13 +51678,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" @@ -51731,13 +51731,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" @@ -51793,7 +51793,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ @@ -51801,7 +51801,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51854,13 +51854,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" @@ -51920,7 +51920,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ @@ -51928,7 +51928,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51990,13 +51990,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" @@ -52053,13 +52053,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" @@ -52103,7 +52103,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ @@ -52111,7 +52111,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -52167,13 +52167,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" @@ -52244,13 +52244,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" @@ -52306,13 +52306,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" @@ -52352,13 +52352,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" @@ -52414,13 +52414,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" @@ -52468,13 +52468,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" @@ -52520,7 +52520,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -52528,7 +52528,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -52576,7 +52576,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ @@ -52584,7 +52584,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -52632,13 +52632,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" @@ -52685,13 +52685,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" @@ -52746,7 +52746,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ @@ -52754,7 +52754,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -52856,13 +52856,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" @@ -52915,13 +52915,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" @@ -52975,13 +52975,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -53036,13 +53036,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search?pretty=true" @@ -53080,13 +53080,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" @@ -53126,13 +53126,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" @@ -53169,13 +53169,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" @@ -53219,7 +53219,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ @@ -53227,7 +53227,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -53269,13 +53269,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" @@ -53319,7 +53319,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ @@ -53327,7 +53327,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -53371,13 +53371,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" @@ -53420,13 +53420,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" @@ -53478,7 +53478,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ @@ -53486,7 +53486,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -53534,13 +53534,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" @@ -53591,7 +53591,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ @@ -53599,7 +53599,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -53649,13 +53649,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" @@ -53695,13 +53695,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" @@ -53747,7 +53747,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ @@ -53755,7 +53755,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -53803,13 +53803,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" @@ -53860,7 +53860,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ @@ -53868,7 +53868,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -53922,13 +53922,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" @@ -53979,13 +53979,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" @@ -54045,7 +54045,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ @@ -54053,7 +54053,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -54111,13 +54111,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" @@ -54179,7 +54179,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ @@ -54187,7 +54187,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -54248,13 +54248,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" @@ -54303,13 +54303,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" @@ -54352,13 +54352,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" @@ -54408,13 +54408,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" @@ -54470,7 +54470,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ @@ -54478,7 +54478,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -54510,13 +54510,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" @@ -54565,7 +54565,7 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -54573,7 +54573,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -54621,13 +54621,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" @@ -54671,13 +54671,13 @@ paths: - label: curl (Service Account Access Token) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS-TOKEN}" \ + curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC-KEY}:${PRIVATE-KEY}" \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" From 97f9ab7c925e516dd865265cd797e2a550837ef7 Mon Sep 17 00:00:00 2001 From: andreaangiolillo Date: Wed, 4 Jun 2025 16:05:30 +0200 Subject: [PATCH 4/6] Rename `curl (Service Account Access Token)` to `curl (Service Account - oauth2)` --- .../internal/openapi/filter/code_sample.go | 2 +- .../openapi/filter/code_sample_test.go | 6 +- .../data/split/dev/openapi-v2-2023-01-01.json | 674 +++++++-------- .../data/split/dev/openapi-v2-2023-01-01.yaml | 674 +++++++-------- .../data/split/dev/openapi-v2-2023-02-01.json | 698 +++++++-------- .../data/split/dev/openapi-v2-2023-02-01.yaml | 698 +++++++-------- .../data/split/dev/openapi-v2-2023-10-01.json | 726 ++++++++-------- .../data/split/dev/openapi-v2-2023-10-01.yaml | 726 ++++++++-------- .../data/split/dev/openapi-v2-2023-11-15.json | 752 ++++++++-------- .../data/split/dev/openapi-v2-2023-11-15.yaml | 752 ++++++++-------- .../data/split/dev/openapi-v2-2024-05-30.json | 788 ++++++++--------- .../data/split/dev/openapi-v2-2024-05-30.yaml | 788 ++++++++--------- .../data/split/dev/openapi-v2-2024-08-05.json | 788 ++++++++--------- .../data/split/dev/openapi-v2-2024-08-05.yaml | 788 ++++++++--------- .../data/split/dev/openapi-v2-2025-01-01.json | 800 +++++++++--------- .../data/split/dev/openapi-v2-2025-01-01.yaml | 800 +++++++++--------- 16 files changed, 5230 insertions(+), 5230 deletions(-) diff --git a/tools/cli/internal/openapi/filter/code_sample.go b/tools/cli/internal/openapi/filter/code_sample.go index f085d9cd40..27b5613dfb 100644 --- a/tools/cli/internal/openapi/filter/code_sample.go +++ b/tools/cli/internal/openapi/filter/code_sample.go @@ -95,7 +95,7 @@ func (f *CodeSampleFilter) newServiceAccountCurlCodeSamplesForOperation(pathName return codeSample{ Lang: "cURL", - Label: "curl (Service Account Access Token)", + Label: "curl (Service Account - oauth2)", Source: source, } } diff --git a/tools/cli/internal/openapi/filter/code_sample_test.go b/tools/cli/internal/openapi/filter/code_sample_test.go index bc1d75788d..a18be849d3 100644 --- a/tools/cli/internal/openapi/filter/code_sample_test.go +++ b/tools/cli/internal/openapi/filter/code_sample_test.go @@ -78,7 +78,7 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl (Service Account Access Token)", + Label: "curl (Service Account - oauth2)", Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, @@ -147,7 +147,7 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl (Service Account Access Token)", + Label: "curl (Service Account - oauth2)", Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, @@ -216,7 +216,7 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl (Service Account Access Token)", + Label: "curl (Service Account - oauth2)", Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, 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 1a6b39b7c4..d3d9c22ab1 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 @@ -242,7 +242,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { @@ -304,7 +304,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -372,7 +372,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { @@ -440,7 +440,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { @@ -499,7 +499,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { @@ -570,7 +570,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -648,7 +648,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { @@ -724,7 +724,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -811,7 +811,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { @@ -879,7 +879,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -956,7 +956,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { @@ -1034,7 +1034,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -1113,7 +1113,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1203,7 +1203,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { @@ -1306,7 +1306,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1385,7 +1385,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1471,7 +1471,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { @@ -1537,7 +1537,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1608,7 +1608,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { @@ -1699,7 +1699,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { @@ -1778,7 +1778,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1843,7 +1843,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { @@ -1906,7 +1906,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { @@ -1986,7 +1986,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { @@ -2061,7 +2061,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2154,7 +2154,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { @@ -2234,7 +2234,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { @@ -2315,7 +2315,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2397,7 +2397,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2468,7 +2468,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2542,7 +2542,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { @@ -2617,7 +2617,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { @@ -2693,7 +2693,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2780,7 +2780,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -2870,7 +2870,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -2957,7 +2957,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3044,7 +3044,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3121,7 +3121,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3211,7 +3211,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { @@ -3298,7 +3298,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3373,7 +3373,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3444,7 +3444,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { @@ -3525,7 +3525,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { @@ -3620,7 +3620,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -3706,7 +3706,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -3768,7 +3768,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3842,7 +3842,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { @@ -3904,7 +3904,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3975,7 +3975,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { @@ -4047,7 +4047,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4128,7 +4128,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { @@ -4207,7 +4207,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -4281,7 +4281,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4348,7 +4348,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4438,7 +4438,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { @@ -4501,7 +4501,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4576,7 +4576,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { @@ -4662,7 +4662,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -4736,7 +4736,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4829,7 +4829,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { @@ -4910,7 +4910,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4995,7 +4995,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { @@ -5086,7 +5086,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5171,7 +5171,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { @@ -5256,7 +5256,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { @@ -5345,7 +5345,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { @@ -5425,7 +5425,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5519,7 +5519,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { @@ -5603,7 +5603,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5692,7 +5692,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { @@ -5772,7 +5772,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5855,7 +5855,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5947,7 +5947,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -6036,7 +6036,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6120,7 +6120,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6195,7 +6195,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6269,7 +6269,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6357,7 +6357,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { @@ -6444,7 +6444,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6530,7 +6530,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { @@ -6616,7 +6616,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6703,7 +6703,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6780,7 +6780,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6869,7 +6869,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6956,7 +6956,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7054,7 +7054,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -7151,7 +7151,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { @@ -7245,7 +7245,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { @@ -7322,7 +7322,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7411,7 +7411,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7488,7 +7488,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7577,7 +7577,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7661,7 +7661,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7754,7 +7754,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7850,7 +7850,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { @@ -7951,7 +7951,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8046,7 +8046,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -8136,7 +8136,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8243,7 +8243,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { @@ -8323,7 +8323,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8403,7 +8403,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8495,7 +8495,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { @@ -8594,7 +8594,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8689,7 +8689,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { @@ -8870,7 +8870,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { @@ -8957,7 +8957,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9053,7 +9053,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { @@ -9167,7 +9167,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9260,7 +9260,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -9354,7 +9354,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9462,7 +9462,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { @@ -9546,7 +9546,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9628,7 +9628,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9718,7 +9718,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { @@ -9800,7 +9800,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9896,7 +9896,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { @@ -9969,7 +9969,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { @@ -10068,7 +10068,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10155,7 +10155,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { @@ -10245,7 +10245,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10323,7 +10323,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10400,7 +10400,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10491,7 +10491,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -10582,7 +10582,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -10658,7 +10658,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10742,7 +10742,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { @@ -10840,7 +10840,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10930,7 +10930,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -11015,7 +11015,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11111,7 +11111,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -11185,7 +11185,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11308,7 +11308,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11398,7 +11398,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11481,7 +11481,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { @@ -11552,7 +11552,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11636,7 +11636,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { @@ -11709,7 +11709,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11805,7 +11805,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { @@ -11870,7 +11870,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11953,7 +11953,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { @@ -12030,7 +12030,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12102,7 +12102,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12194,7 +12194,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { @@ -12272,7 +12272,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12352,7 +12352,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { @@ -12423,7 +12423,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { @@ -12495,7 +12495,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12587,7 +12587,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { @@ -12664,7 +12664,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12747,7 +12747,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12831,7 +12831,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12929,7 +12929,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -13030,7 +13030,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13101,7 +13101,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13336,7 +13336,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { @@ -13423,7 +13423,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -13505,7 +13505,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13607,7 +13607,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { @@ -13690,7 +13690,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13787,7 +13787,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { @@ -13915,7 +13915,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14040,7 +14040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14102,7 +14102,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14182,7 +14182,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { @@ -14256,7 +14256,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14339,7 +14339,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { @@ -14436,7 +14436,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -14520,7 +14520,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14658,7 +14658,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14744,7 +14744,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14809,7 +14809,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14920,7 +14920,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15034,7 +15034,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15140,7 +15140,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15217,7 +15217,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15307,7 +15307,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { @@ -15395,7 +15395,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15506,7 +15506,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -15614,7 +15614,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -15689,7 +15689,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15768,7 +15768,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -15841,7 +15841,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -15914,7 +15914,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { @@ -15991,7 +15991,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16079,7 +16079,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -16145,7 +16145,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16219,7 +16219,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16311,7 +16311,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { @@ -16404,7 +16404,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16508,7 +16508,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -16593,7 +16593,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { @@ -16679,7 +16679,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { @@ -16761,7 +16761,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16832,7 +16832,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16903,7 +16903,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { @@ -16962,7 +16962,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { @@ -17022,7 +17022,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17093,7 +17093,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { @@ -17152,7 +17152,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { @@ -17211,7 +17211,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { @@ -17273,7 +17273,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17335,7 +17335,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { @@ -17397,7 +17397,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { @@ -17520,7 +17520,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17608,7 +17608,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17692,7 +17692,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { @@ -17769,7 +17769,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { @@ -17844,7 +17844,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17936,7 +17936,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { @@ -18001,7 +18001,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18075,7 +18075,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { @@ -18149,7 +18149,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { @@ -18224,7 +18224,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18313,7 +18313,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { @@ -18393,7 +18393,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18489,7 +18489,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18566,7 +18566,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { @@ -18643,7 +18643,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { @@ -18739,7 +18739,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18829,7 +18829,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -18917,7 +18917,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19005,7 +19005,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { @@ -19082,7 +19082,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { @@ -19147,7 +19147,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19221,7 +19221,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { @@ -19297,7 +19297,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19383,7 +19383,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { @@ -19468,7 +19468,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -19551,7 +19551,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19645,7 +19645,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { @@ -19725,7 +19725,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19814,7 +19814,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -19904,7 +19904,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20013,7 +20013,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { @@ -20112,7 +20112,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -20212,7 +20212,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20279,7 +20279,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20358,7 +20358,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { @@ -20435,7 +20435,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20509,7 +20509,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { @@ -20586,7 +20586,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -20664,7 +20664,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20735,7 +20735,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20808,7 +20808,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20890,7 +20890,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20972,7 +20972,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21093,7 +21093,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21175,7 +21175,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21254,7 +21254,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21384,7 +21384,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21621,7 +21621,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21712,7 +21712,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21827,7 +21827,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21958,7 +21958,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22026,7 +22026,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { @@ -22092,7 +22092,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22170,7 +22170,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -22248,7 +22248,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -22325,7 +22325,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { @@ -22396,7 +22396,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22467,7 +22467,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22544,7 +22544,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { @@ -22630,7 +22630,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22722,7 +22722,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -22811,7 +22811,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22897,7 +22897,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22984,7 +22984,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23058,7 +23058,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23136,7 +23136,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { @@ -23216,7 +23216,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { @@ -23294,7 +23294,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23380,7 +23380,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { @@ -23448,7 +23448,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23525,7 +23525,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { @@ -23605,7 +23605,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23692,7 +23692,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { @@ -23773,7 +23773,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { @@ -23869,7 +23869,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -23931,7 +23931,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24005,7 +24005,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { @@ -24064,7 +24064,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { @@ -24126,7 +24126,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24202,7 +24202,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { @@ -24276,7 +24276,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24365,7 +24365,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24442,7 +24442,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { @@ -24533,7 +24533,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -24618,7 +24618,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { @@ -24698,7 +24698,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { @@ -24769,7 +24769,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { @@ -24838,7 +24838,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { @@ -24918,7 +24918,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { @@ -24993,7 +24993,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25068,7 +25068,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { @@ -25146,7 +25146,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { @@ -25222,7 +25222,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25312,7 +25312,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -25399,7 +25399,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25500,7 +25500,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { @@ -25595,7 +25595,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -25685,7 +25685,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25758,7 +25758,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { @@ -25844,7 +25844,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25954,7 +25954,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26040,7 +26040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26108,7 +26108,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26193,7 +26193,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26273,7 +26273,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26350,7 +26350,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -26427,7 +26427,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -26504,7 +26504,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { @@ -26579,7 +26579,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26668,7 +26668,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -26821,7 +26821,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26886,7 +26886,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26969,7 +26969,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27045,7 +27045,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27113,7 +27113,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27175,7 +27175,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { @@ -27249,7 +27249,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { @@ -27317,7 +27317,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27394,7 +27394,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { @@ -27475,7 +27475,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27559,7 +27559,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { @@ -27640,7 +27640,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27724,7 +27724,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { @@ -27806,7 +27806,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27902,7 +27902,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -27995,7 +27995,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28094,7 +28094,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { @@ -28187,7 +28187,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -28264,7 +28264,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28344,7 +28344,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { @@ -28435,7 +28435,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -28508,7 +28508,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { @@ -28580,7 +28580,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28654,7 +28654,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { 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 6b227f347b..1f5f78b325 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 @@ -28293,7 +28293,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28336,7 +28336,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28380,7 +28380,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28424,7 +28424,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28466,7 +28466,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28513,7 +28513,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28568,7 +28568,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28622,7 +28622,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28683,7 +28683,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28733,7 +28733,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28785,7 +28785,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28843,7 +28843,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28898,7 +28898,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28960,7 +28960,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29033,7 +29033,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29088,7 +29088,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29151,7 +29151,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29201,7 +29201,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29247,7 +29247,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29310,7 +29310,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29358,7 +29358,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29401,7 +29401,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29455,7 +29455,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29507,7 +29507,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29567,7 +29567,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29631,7 +29631,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29687,7 +29687,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29743,7 +29743,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29791,7 +29791,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29844,7 +29844,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29903,7 +29903,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29959,7 +29959,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30024,7 +30024,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30095,7 +30095,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30159,7 +30159,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30218,7 +30218,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30274,7 +30274,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30339,7 +30339,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30403,7 +30403,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30451,7 +30451,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30499,7 +30499,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30559,7 +30559,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30621,7 +30621,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30684,7 +30684,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30730,7 +30730,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30780,7 +30780,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30826,7 +30826,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30874,7 +30874,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30924,7 +30924,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30980,7 +30980,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31040,7 +31040,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31093,7 +31093,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31139,7 +31139,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31201,7 +31201,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31248,7 +31248,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31299,7 +31299,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31362,7 +31362,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31413,7 +31413,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31477,7 +31477,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31533,7 +31533,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31591,7 +31591,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31657,7 +31657,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31713,7 +31713,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31778,7 +31778,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31837,7 +31837,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31899,7 +31899,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31959,7 +31959,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32013,7 +32013,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32079,7 +32079,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32145,7 +32145,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32204,7 +32204,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32257,7 +32257,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32309,7 +32309,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32373,7 +32373,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32434,7 +32434,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32496,7 +32496,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32562,7 +32562,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32623,7 +32623,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32691,7 +32691,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32755,7 +32755,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32816,7 +32816,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32869,7 +32869,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32935,7 +32935,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33003,7 +33003,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33060,7 +33060,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33122,7 +33122,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33175,7 +33175,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33237,7 +33237,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33292,7 +33292,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33357,7 +33357,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33423,7 +33423,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33497,7 +33497,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33564,7 +33564,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33628,7 +33628,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33703,7 +33703,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33763,7 +33763,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33819,7 +33819,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33883,7 +33883,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33955,7 +33955,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34021,7 +34021,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34152,7 +34152,7 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34213,7 +34213,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34279,7 +34279,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34348,7 +34348,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34414,7 +34414,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34489,7 +34489,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34574,7 +34574,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34632,7 +34632,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34689,7 +34689,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34751,7 +34751,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34812,7 +34812,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34879,7 +34879,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34934,7 +34934,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35007,7 +35007,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35067,7 +35067,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35137,7 +35137,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35191,7 +35191,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35245,7 +35245,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35308,7 +35308,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35375,7 +35375,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35435,7 +35435,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35496,7 +35496,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35565,7 +35565,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35628,7 +35628,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35688,7 +35688,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35755,7 +35755,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35810,7 +35810,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35897,7 +35897,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35955,7 +35955,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36012,7 +36012,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36073,7 +36073,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36135,7 +36135,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36191,7 +36191,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36253,7 +36253,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36304,7 +36304,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36370,7 +36370,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36419,7 +36419,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36463,7 +36463,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36519,7 +36519,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36575,7 +36575,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36624,7 +36624,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36686,7 +36686,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36743,7 +36743,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36797,7 +36797,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36849,7 +36849,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36899,7 +36899,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36961,7 +36961,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37017,7 +37017,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37083,7 +37083,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37149,7 +37149,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37225,7 +37225,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37301,7 +37301,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37346,7 +37346,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37493,7 +37493,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37569,7 +37569,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37638,7 +37638,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37720,7 +37720,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37777,7 +37777,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37848,7 +37848,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37940,7 +37940,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38025,7 +38025,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38070,7 +38070,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38136,7 +38136,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38190,7 +38190,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38246,7 +38246,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38316,7 +38316,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38374,7 +38374,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38473,7 +38473,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38535,7 +38535,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38579,7 +38579,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38653,7 +38653,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38726,7 +38726,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38798,7 +38798,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38847,7 +38847,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38911,7 +38911,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38974,7 +38974,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39049,7 +39049,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39126,7 +39126,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39181,7 +39181,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39235,7 +39235,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39289,7 +39289,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39345,7 +39345,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39399,7 +39399,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39461,7 +39461,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39510,7 +39510,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39560,7 +39560,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39642,7 +39642,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39725,7 +39725,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39818,7 +39818,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39887,7 +39887,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39939,7 +39939,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39986,7 +39986,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40048,7 +40048,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40110,7 +40110,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40151,7 +40151,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40192,7 +40192,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40241,7 +40241,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40286,7 +40286,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40331,7 +40331,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40377,7 +40377,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40419,7 +40419,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40461,7 +40461,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40548,7 +40548,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40605,7 +40605,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40662,7 +40662,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40719,7 +40719,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40771,7 +40771,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40834,7 +40834,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40883,7 +40883,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40934,7 +40934,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40990,7 +40990,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41042,7 +41042,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41104,7 +41104,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41163,7 +41163,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41226,7 +41226,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41279,7 +41279,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41336,7 +41336,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41403,7 +41403,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41466,7 +41466,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41528,7 +41528,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41588,7 +41588,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41647,7 +41647,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41709,7 +41709,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41772,7 +41772,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41847,7 +41847,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41920,7 +41920,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41990,7 +41990,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42042,7 +42042,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42090,7 +42090,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42140,7 +42140,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42197,7 +42197,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42260,7 +42260,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42324,7 +42324,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42383,7 +42383,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42449,7 +42449,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42499,7 +42499,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42553,7 +42553,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42606,7 +42606,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42675,7 +42675,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42732,7 +42732,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42786,7 +42786,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42831,7 +42831,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42881,7 +42881,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42934,7 +42934,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42990,7 +42990,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43072,7 +43072,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43125,7 +43125,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43180,7 +43180,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43278,7 +43278,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43487,7 +43487,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43557,7 +43557,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43644,7 +43644,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43738,7 +43738,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43784,7 +43784,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43829,7 +43829,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43882,7 +43882,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43939,7 +43939,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43997,7 +43997,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44051,7 +44051,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44096,7 +44096,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44148,7 +44148,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44208,7 +44208,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44271,7 +44271,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44337,7 +44337,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44393,7 +44393,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44455,7 +44455,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44506,7 +44506,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44561,7 +44561,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44620,7 +44620,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44674,7 +44674,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44733,7 +44733,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44783,7 +44783,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44835,7 +44835,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44890,7 +44890,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44949,7 +44949,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45010,7 +45010,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45076,7 +45076,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45122,7 +45122,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45175,7 +45175,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45223,7 +45223,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45265,7 +45265,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45316,7 +45316,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45371,7 +45371,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45428,7 +45428,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45481,7 +45481,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45543,7 +45543,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45602,7 +45602,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45657,7 +45657,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45712,7 +45712,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45770,7 +45770,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45817,7 +45817,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45871,7 +45871,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45923,7 +45923,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45974,7 +45974,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46032,7 +46032,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46085,7 +46085,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46147,7 +46147,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46208,7 +46208,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46274,7 +46274,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46344,7 +46344,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46407,7 +46407,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46457,7 +46457,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46521,7 +46521,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46598,7 +46598,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46660,7 +46660,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46706,7 +46706,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46768,7 +46768,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46822,7 +46822,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46874,7 +46874,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46930,7 +46930,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46986,7 +46986,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47039,7 +47039,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47100,7 +47100,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47210,7 +47210,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47269,7 +47269,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47329,7 +47329,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47373,7 +47373,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47419,7 +47419,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47462,7 +47462,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47512,7 +47512,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47562,7 +47562,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47614,7 +47614,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47670,7 +47670,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47727,7 +47727,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47789,7 +47789,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47846,7 +47846,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47912,7 +47912,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47978,7 +47978,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48046,7 +48046,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48115,7 +48115,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48170,7 +48170,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48219,7 +48219,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48275,7 +48275,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48337,7 +48337,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48396,7 +48396,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48452,7 +48452,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48502,7 +48502,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ 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 e96f53ce4c..07c17bafb0 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 @@ -246,7 +246,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { @@ -308,7 +308,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -376,7 +376,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { @@ -444,7 +444,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { @@ -503,7 +503,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { @@ -574,7 +574,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -652,7 +652,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { @@ -728,7 +728,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -815,7 +815,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { @@ -883,7 +883,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -960,7 +960,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { @@ -1038,7 +1038,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -1117,7 +1117,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1207,7 +1207,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { @@ -1310,7 +1310,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1389,7 +1389,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1475,7 +1475,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { @@ -1541,7 +1541,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1612,7 +1612,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { @@ -1703,7 +1703,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { @@ -1782,7 +1782,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1847,7 +1847,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { @@ -1910,7 +1910,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { @@ -1990,7 +1990,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { @@ -2071,7 +2071,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { @@ -2146,7 +2146,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2239,7 +2239,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { @@ -2319,7 +2319,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { @@ -2400,7 +2400,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2482,7 +2482,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2553,7 +2553,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2627,7 +2627,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { @@ -2702,7 +2702,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { @@ -2778,7 +2778,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2865,7 +2865,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -2955,7 +2955,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -3042,7 +3042,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3129,7 +3129,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3206,7 +3206,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3296,7 +3296,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { @@ -3383,7 +3383,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3458,7 +3458,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3529,7 +3529,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { @@ -3610,7 +3610,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { @@ -3705,7 +3705,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -3791,7 +3791,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -3853,7 +3853,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3927,7 +3927,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { @@ -3989,7 +3989,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4060,7 +4060,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { @@ -4132,7 +4132,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4213,7 +4213,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { @@ -4292,7 +4292,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -4366,7 +4366,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4433,7 +4433,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4523,7 +4523,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { @@ -4586,7 +4586,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4661,7 +4661,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { @@ -4747,7 +4747,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -4821,7 +4821,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4914,7 +4914,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { @@ -4995,7 +4995,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5080,7 +5080,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { @@ -5171,7 +5171,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5256,7 +5256,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { @@ -5341,7 +5341,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { @@ -5429,7 +5429,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { @@ -5508,7 +5508,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5602,7 +5602,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { @@ -5686,7 +5686,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5775,7 +5775,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { @@ -5855,7 +5855,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5938,7 +5938,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6030,7 +6030,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -6119,7 +6119,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6203,7 +6203,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6278,7 +6278,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6352,7 +6352,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6440,7 +6440,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { @@ -6527,7 +6527,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6613,7 +6613,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { @@ -6699,7 +6699,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6786,7 +6786,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6863,7 +6863,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6952,7 +6952,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -7039,7 +7039,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7137,7 +7137,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -7234,7 +7234,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { @@ -7328,7 +7328,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { @@ -7405,7 +7405,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7494,7 +7494,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7571,7 +7571,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7660,7 +7660,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7744,7 +7744,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7837,7 +7837,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7933,7 +7933,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { @@ -8034,7 +8034,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8129,7 +8129,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -8219,7 +8219,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8326,7 +8326,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { @@ -8406,7 +8406,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8486,7 +8486,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8578,7 +8578,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { @@ -8677,7 +8677,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8772,7 +8772,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { @@ -8953,7 +8953,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { @@ -9040,7 +9040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9136,7 +9136,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { @@ -9250,7 +9250,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9343,7 +9343,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -9437,7 +9437,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9545,7 +9545,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { @@ -9629,7 +9629,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9711,7 +9711,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9801,7 +9801,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { @@ -9883,7 +9883,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9979,7 +9979,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { @@ -10051,7 +10051,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { @@ -10149,7 +10149,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10236,7 +10236,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { @@ -10326,7 +10326,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10404,7 +10404,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10481,7 +10481,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10572,7 +10572,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -10663,7 +10663,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -10739,7 +10739,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10823,7 +10823,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { @@ -10921,7 +10921,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11011,7 +11011,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -11096,7 +11096,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11192,7 +11192,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -11266,7 +11266,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11388,7 +11388,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11477,7 +11477,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11560,7 +11560,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { @@ -11631,7 +11631,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11715,7 +11715,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { @@ -11788,7 +11788,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11884,7 +11884,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { @@ -11949,7 +11949,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12032,7 +12032,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { @@ -12109,7 +12109,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12181,7 +12181,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12273,7 +12273,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { @@ -12351,7 +12351,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12431,7 +12431,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { @@ -12502,7 +12502,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { @@ -12574,7 +12574,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12666,7 +12666,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { @@ -12743,7 +12743,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12826,7 +12826,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12910,7 +12910,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13008,7 +13008,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -13109,7 +13109,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13180,7 +13180,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13415,7 +13415,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { @@ -13502,7 +13502,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -13584,7 +13584,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13686,7 +13686,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { @@ -13769,7 +13769,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13866,7 +13866,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { @@ -13994,7 +13994,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14119,7 +14119,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14181,7 +14181,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14261,7 +14261,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { @@ -14335,7 +14335,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14418,7 +14418,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { @@ -14515,7 +14515,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -14599,7 +14599,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14737,7 +14737,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14823,7 +14823,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14888,7 +14888,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14999,7 +14999,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15113,7 +15113,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15219,7 +15219,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15296,7 +15296,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15386,7 +15386,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { @@ -15474,7 +15474,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15585,7 +15585,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -15693,7 +15693,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -15768,7 +15768,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15847,7 +15847,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -15920,7 +15920,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -15993,7 +15993,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { @@ -16070,7 +16070,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16158,7 +16158,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -16224,7 +16224,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16298,7 +16298,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16390,7 +16390,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { @@ -16483,7 +16483,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16587,7 +16587,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -16672,7 +16672,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { @@ -16758,7 +16758,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { @@ -16840,7 +16840,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16911,7 +16911,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16982,7 +16982,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { @@ -17041,7 +17041,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { @@ -17101,7 +17101,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17172,7 +17172,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { @@ -17231,7 +17231,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { @@ -17290,7 +17290,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { @@ -17352,7 +17352,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17414,7 +17414,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { @@ -17476,7 +17476,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { @@ -17599,7 +17599,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17687,7 +17687,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17771,7 +17771,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { @@ -17848,7 +17848,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { @@ -17923,7 +17923,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18015,7 +18015,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { @@ -18080,7 +18080,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18154,7 +18154,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { @@ -18228,7 +18228,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { @@ -18303,7 +18303,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18392,7 +18392,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { @@ -18472,7 +18472,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18568,7 +18568,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18645,7 +18645,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { @@ -18722,7 +18722,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { @@ -18818,7 +18818,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18908,7 +18908,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -18996,7 +18996,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19084,7 +19084,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { @@ -19161,7 +19161,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { @@ -19226,7 +19226,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19300,7 +19300,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { @@ -19376,7 +19376,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19462,7 +19462,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { @@ -19547,7 +19547,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -19630,7 +19630,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19724,7 +19724,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { @@ -19804,7 +19804,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19893,7 +19893,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -19983,7 +19983,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20092,7 +20092,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { @@ -20191,7 +20191,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -20291,7 +20291,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20358,7 +20358,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20437,7 +20437,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { @@ -20514,7 +20514,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20588,7 +20588,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { @@ -20665,7 +20665,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -20743,7 +20743,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20814,7 +20814,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20887,7 +20887,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20969,7 +20969,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21051,7 +21051,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21172,7 +21172,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21254,7 +21254,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21333,7 +21333,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21463,7 +21463,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21700,7 +21700,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21791,7 +21791,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21906,7 +21906,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22037,7 +22037,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22105,7 +22105,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { @@ -22171,7 +22171,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22249,7 +22249,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -22327,7 +22327,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -22404,7 +22404,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { @@ -22475,7 +22475,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22546,7 +22546,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22623,7 +22623,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { @@ -22709,7 +22709,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22801,7 +22801,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -22890,7 +22890,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22976,7 +22976,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23063,7 +23063,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23137,7 +23137,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23215,7 +23215,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { @@ -23295,7 +23295,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { @@ -23373,7 +23373,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23459,7 +23459,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { @@ -23527,7 +23527,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23604,7 +23604,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { @@ -23672,7 +23672,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23746,7 +23746,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { @@ -23823,7 +23823,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { @@ -23903,7 +23903,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23992,7 +23992,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { @@ -24096,7 +24096,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24176,7 +24176,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24262,7 +24262,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { @@ -24348,7 +24348,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -24426,7 +24426,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24524,7 +24524,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { @@ -24604,7 +24604,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24691,7 +24691,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { @@ -24772,7 +24772,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { @@ -24868,7 +24868,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -24930,7 +24930,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25004,7 +25004,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { @@ -25063,7 +25063,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { @@ -25125,7 +25125,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25201,7 +25201,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { @@ -25275,7 +25275,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25364,7 +25364,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25441,7 +25441,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { @@ -25532,7 +25532,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -25617,7 +25617,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { @@ -25697,7 +25697,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { @@ -25768,7 +25768,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { @@ -25837,7 +25837,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { @@ -25917,7 +25917,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { @@ -25992,7 +25992,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26067,7 +26067,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { @@ -26145,7 +26145,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { @@ -26221,7 +26221,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26311,7 +26311,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -26398,7 +26398,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26499,7 +26499,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { @@ -26594,7 +26594,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -26684,7 +26684,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26757,7 +26757,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { @@ -26843,7 +26843,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26953,7 +26953,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27039,7 +27039,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27107,7 +27107,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27192,7 +27192,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27272,7 +27272,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27349,7 +27349,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -27426,7 +27426,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -27503,7 +27503,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { @@ -27578,7 +27578,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27667,7 +27667,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -27820,7 +27820,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27885,7 +27885,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27968,7 +27968,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28044,7 +28044,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28112,7 +28112,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28174,7 +28174,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { @@ -28248,7 +28248,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { @@ -28316,7 +28316,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28393,7 +28393,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { @@ -28474,7 +28474,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28558,7 +28558,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { @@ -28639,7 +28639,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28723,7 +28723,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { @@ -28805,7 +28805,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28901,7 +28901,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -28994,7 +28994,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29093,7 +29093,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { @@ -29186,7 +29186,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -29263,7 +29263,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29343,7 +29343,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { @@ -29434,7 +29434,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -29507,7 +29507,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { @@ -29579,7 +29579,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29653,7 +29653,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { 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 8498962522..2edeb84287 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 @@ -28657,7 +28657,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28700,7 +28700,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28744,7 +28744,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28788,7 +28788,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28830,7 +28830,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28877,7 +28877,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28932,7 +28932,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28986,7 +28986,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29047,7 +29047,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29097,7 +29097,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29149,7 +29149,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29207,7 +29207,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29262,7 +29262,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29324,7 +29324,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29397,7 +29397,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29452,7 +29452,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29515,7 +29515,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29565,7 +29565,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29611,7 +29611,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29674,7 +29674,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29722,7 +29722,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29765,7 +29765,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29819,7 +29819,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29877,7 +29877,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29929,7 +29929,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29989,7 +29989,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30053,7 +30053,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30109,7 +30109,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30165,7 +30165,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30213,7 +30213,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30266,7 +30266,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30325,7 +30325,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30381,7 +30381,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30446,7 +30446,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30517,7 +30517,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30581,7 +30581,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30640,7 +30640,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30696,7 +30696,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30761,7 +30761,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30825,7 +30825,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30873,7 +30873,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30921,7 +30921,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30981,7 +30981,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31043,7 +31043,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31106,7 +31106,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31152,7 +31152,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31202,7 +31202,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31248,7 +31248,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31296,7 +31296,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31346,7 +31346,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31402,7 +31402,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31462,7 +31462,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31515,7 +31515,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31561,7 +31561,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31623,7 +31623,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31670,7 +31670,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31721,7 +31721,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31784,7 +31784,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31835,7 +31835,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31899,7 +31899,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31955,7 +31955,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32013,7 +32013,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32078,7 +32078,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32133,7 +32133,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32198,7 +32198,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32257,7 +32257,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32319,7 +32319,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32379,7 +32379,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32433,7 +32433,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32499,7 +32499,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32565,7 +32565,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32624,7 +32624,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32677,7 +32677,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32729,7 +32729,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32793,7 +32793,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32854,7 +32854,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32916,7 +32916,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32982,7 +32982,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33043,7 +33043,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33111,7 +33111,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33175,7 +33175,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33236,7 +33236,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33289,7 +33289,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33355,7 +33355,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33423,7 +33423,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33480,7 +33480,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33542,7 +33542,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33595,7 +33595,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33657,7 +33657,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33712,7 +33712,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33777,7 +33777,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33843,7 +33843,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33917,7 +33917,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33984,7 +33984,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34048,7 +34048,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34123,7 +34123,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34183,7 +34183,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34239,7 +34239,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34303,7 +34303,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34375,7 +34375,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34441,7 +34441,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34572,7 +34572,7 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34633,7 +34633,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34699,7 +34699,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34768,7 +34768,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34834,7 +34834,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34909,7 +34909,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34994,7 +34994,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35052,7 +35052,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35109,7 +35109,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35171,7 +35171,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35232,7 +35232,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35299,7 +35299,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35353,7 +35353,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35425,7 +35425,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35485,7 +35485,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35555,7 +35555,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35609,7 +35609,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35663,7 +35663,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35726,7 +35726,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35793,7 +35793,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35853,7 +35853,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35914,7 +35914,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35983,7 +35983,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36046,7 +36046,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36106,7 +36106,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36173,7 +36173,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36228,7 +36228,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36314,7 +36314,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36371,7 +36371,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36428,7 +36428,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36489,7 +36489,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36551,7 +36551,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36607,7 +36607,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36669,7 +36669,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36720,7 +36720,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36786,7 +36786,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36835,7 +36835,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36879,7 +36879,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36935,7 +36935,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36991,7 +36991,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37040,7 +37040,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37102,7 +37102,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37159,7 +37159,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37213,7 +37213,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37265,7 +37265,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37315,7 +37315,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37377,7 +37377,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37433,7 +37433,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37499,7 +37499,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37565,7 +37565,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37641,7 +37641,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37717,7 +37717,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37762,7 +37762,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37909,7 +37909,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37985,7 +37985,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38054,7 +38054,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38136,7 +38136,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38193,7 +38193,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38264,7 +38264,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38356,7 +38356,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38441,7 +38441,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38486,7 +38486,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38552,7 +38552,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38606,7 +38606,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38662,7 +38662,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38732,7 +38732,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38790,7 +38790,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38889,7 +38889,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38951,7 +38951,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38995,7 +38995,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39069,7 +39069,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39142,7 +39142,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39214,7 +39214,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39263,7 +39263,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39327,7 +39327,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39390,7 +39390,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39465,7 +39465,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39542,7 +39542,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39597,7 +39597,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39651,7 +39651,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39705,7 +39705,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39761,7 +39761,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39815,7 +39815,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39877,7 +39877,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39926,7 +39926,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39976,7 +39976,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40058,7 +40058,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40141,7 +40141,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40234,7 +40234,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40303,7 +40303,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40355,7 +40355,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40402,7 +40402,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40464,7 +40464,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40526,7 +40526,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40567,7 +40567,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40608,7 +40608,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40657,7 +40657,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40702,7 +40702,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40747,7 +40747,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40793,7 +40793,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40835,7 +40835,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40877,7 +40877,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40964,7 +40964,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41021,7 +41021,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41078,7 +41078,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41135,7 +41135,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41187,7 +41187,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41250,7 +41250,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41299,7 +41299,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41350,7 +41350,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41406,7 +41406,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41458,7 +41458,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41520,7 +41520,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41579,7 +41579,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41642,7 +41642,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41695,7 +41695,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41752,7 +41752,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41819,7 +41819,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41882,7 +41882,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41944,7 +41944,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42004,7 +42004,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42063,7 +42063,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42125,7 +42125,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42188,7 +42188,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42263,7 +42263,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42336,7 +42336,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42406,7 +42406,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42458,7 +42458,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42506,7 +42506,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42556,7 +42556,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42613,7 +42613,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42676,7 +42676,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42740,7 +42740,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42799,7 +42799,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42865,7 +42865,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42915,7 +42915,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42969,7 +42969,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43022,7 +43022,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43091,7 +43091,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43148,7 +43148,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43202,7 +43202,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43247,7 +43247,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43297,7 +43297,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43350,7 +43350,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43406,7 +43406,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43488,7 +43488,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43541,7 +43541,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43596,7 +43596,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43694,7 +43694,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43903,7 +43903,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43973,7 +43973,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44060,7 +44060,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44154,7 +44154,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44200,7 +44200,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44245,7 +44245,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44298,7 +44298,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44355,7 +44355,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44413,7 +44413,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44467,7 +44467,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44512,7 +44512,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44564,7 +44564,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44624,7 +44624,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44687,7 +44687,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44753,7 +44753,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44809,7 +44809,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44871,7 +44871,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44922,7 +44922,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44977,7 +44977,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45036,7 +45036,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45090,7 +45090,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45149,7 +45149,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45199,7 +45199,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45251,7 +45251,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45299,7 +45299,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45349,7 +45349,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45405,7 +45405,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45460,7 +45460,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45520,7 +45520,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45597,7 +45597,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45649,7 +45649,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45707,7 +45707,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45769,7 +45769,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45823,7 +45823,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45889,7 +45889,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45944,7 +45944,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46003,7 +46003,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46064,7 +46064,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46130,7 +46130,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46176,7 +46176,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46229,7 +46229,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46277,7 +46277,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46319,7 +46319,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46370,7 +46370,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46425,7 +46425,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46482,7 +46482,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46535,7 +46535,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46597,7 +46597,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46656,7 +46656,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46711,7 +46711,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46766,7 +46766,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46824,7 +46824,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46871,7 +46871,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46925,7 +46925,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46977,7 +46977,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47028,7 +47028,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47086,7 +47086,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47139,7 +47139,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47201,7 +47201,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47262,7 +47262,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47328,7 +47328,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47398,7 +47398,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47461,7 +47461,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47511,7 +47511,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47575,7 +47575,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47652,7 +47652,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47714,7 +47714,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47760,7 +47760,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47822,7 +47822,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47876,7 +47876,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47928,7 +47928,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47984,7 +47984,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48040,7 +48040,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48093,7 +48093,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48154,7 +48154,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48264,7 +48264,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48323,7 +48323,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48383,7 +48383,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48427,7 +48427,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48473,7 +48473,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48516,7 +48516,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48566,7 +48566,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48616,7 +48616,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48668,7 +48668,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48724,7 +48724,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48781,7 +48781,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48843,7 +48843,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48900,7 +48900,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48966,7 +48966,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49032,7 +49032,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49100,7 +49100,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49169,7 +49169,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49224,7 +49224,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49273,7 +49273,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49329,7 +49329,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49391,7 +49391,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49450,7 +49450,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49506,7 +49506,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49556,7 +49556,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ 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 b6d633501f..489dd25be8 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 @@ -246,7 +246,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { @@ -308,7 +308,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -376,7 +376,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { @@ -444,7 +444,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { @@ -503,7 +503,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { @@ -574,7 +574,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -652,7 +652,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { @@ -728,7 +728,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -815,7 +815,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { @@ -883,7 +883,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -960,7 +960,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { @@ -1038,7 +1038,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -1117,7 +1117,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1207,7 +1207,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { @@ -1310,7 +1310,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1389,7 +1389,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1475,7 +1475,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { @@ -1541,7 +1541,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1612,7 +1612,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { @@ -1703,7 +1703,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { @@ -1782,7 +1782,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1847,7 +1847,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { @@ -1910,7 +1910,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { @@ -1990,7 +1990,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { @@ -2071,7 +2071,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { @@ -2146,7 +2146,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2239,7 +2239,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { @@ -2319,7 +2319,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { @@ -2400,7 +2400,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2482,7 +2482,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2553,7 +2553,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2627,7 +2627,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { @@ -2702,7 +2702,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { @@ -2778,7 +2778,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2865,7 +2865,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -2955,7 +2955,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -3042,7 +3042,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3129,7 +3129,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3206,7 +3206,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3296,7 +3296,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { @@ -3383,7 +3383,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3458,7 +3458,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3529,7 +3529,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { @@ -3610,7 +3610,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { @@ -3705,7 +3705,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -3791,7 +3791,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -3853,7 +3853,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3927,7 +3927,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { @@ -3989,7 +3989,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4060,7 +4060,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { @@ -4132,7 +4132,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4213,7 +4213,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { @@ -4292,7 +4292,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -4366,7 +4366,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4432,7 +4432,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4519,7 +4519,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { @@ -4581,7 +4581,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4656,7 +4656,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { @@ -4742,7 +4742,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -4816,7 +4816,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4909,7 +4909,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { @@ -4990,7 +4990,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5075,7 +5075,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { @@ -5166,7 +5166,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5251,7 +5251,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { @@ -5336,7 +5336,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { @@ -5424,7 +5424,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { @@ -5503,7 +5503,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5597,7 +5597,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { @@ -5681,7 +5681,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5770,7 +5770,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { @@ -5850,7 +5850,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5933,7 +5933,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6025,7 +6025,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -6114,7 +6114,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6198,7 +6198,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6273,7 +6273,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6347,7 +6347,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6435,7 +6435,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { @@ -6522,7 +6522,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6608,7 +6608,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { @@ -6694,7 +6694,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6781,7 +6781,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6858,7 +6858,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6947,7 +6947,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -7034,7 +7034,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7132,7 +7132,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -7229,7 +7229,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { @@ -7323,7 +7323,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { @@ -7400,7 +7400,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7489,7 +7489,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7566,7 +7566,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7655,7 +7655,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7739,7 +7739,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7832,7 +7832,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7928,7 +7928,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { @@ -8029,7 +8029,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8124,7 +8124,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -8214,7 +8214,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8321,7 +8321,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { @@ -8401,7 +8401,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8481,7 +8481,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8573,7 +8573,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { @@ -8672,7 +8672,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8767,7 +8767,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { @@ -8948,7 +8948,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { @@ -9035,7 +9035,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9131,7 +9131,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { @@ -9245,7 +9245,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9338,7 +9338,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -9432,7 +9432,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9540,7 +9540,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { @@ -9624,7 +9624,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9706,7 +9706,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9796,7 +9796,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { @@ -9878,7 +9878,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9974,7 +9974,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { @@ -10046,7 +10046,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { @@ -10144,7 +10144,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10231,7 +10231,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { @@ -10321,7 +10321,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10399,7 +10399,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10476,7 +10476,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10567,7 +10567,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -10658,7 +10658,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -10734,7 +10734,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10818,7 +10818,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { @@ -10916,7 +10916,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11006,7 +11006,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -11091,7 +11091,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11187,7 +11187,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -11261,7 +11261,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11383,7 +11383,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11472,7 +11472,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11555,7 +11555,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { @@ -11626,7 +11626,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11710,7 +11710,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { @@ -11783,7 +11783,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11879,7 +11879,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { @@ -11944,7 +11944,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12027,7 +12027,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { @@ -12104,7 +12104,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12176,7 +12176,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12268,7 +12268,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { @@ -12346,7 +12346,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12426,7 +12426,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { @@ -12497,7 +12497,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { @@ -12569,7 +12569,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12661,7 +12661,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { @@ -12738,7 +12738,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12821,7 +12821,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12905,7 +12905,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13003,7 +13003,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -13104,7 +13104,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13175,7 +13175,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13410,7 +13410,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { @@ -13497,7 +13497,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -13579,7 +13579,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13681,7 +13681,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { @@ -13764,7 +13764,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13861,7 +13861,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { @@ -13989,7 +13989,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14114,7 +14114,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14176,7 +14176,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14256,7 +14256,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { @@ -14330,7 +14330,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14413,7 +14413,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { @@ -14510,7 +14510,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -14594,7 +14594,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14732,7 +14732,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14818,7 +14818,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14883,7 +14883,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14994,7 +14994,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15108,7 +15108,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15214,7 +15214,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15291,7 +15291,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15381,7 +15381,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { @@ -15469,7 +15469,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15580,7 +15580,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -15688,7 +15688,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -15763,7 +15763,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15842,7 +15842,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -15915,7 +15915,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -15988,7 +15988,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { @@ -16065,7 +16065,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16153,7 +16153,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -16219,7 +16219,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16293,7 +16293,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16385,7 +16385,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { @@ -16478,7 +16478,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16582,7 +16582,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -16667,7 +16667,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { @@ -16753,7 +16753,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { @@ -16835,7 +16835,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16906,7 +16906,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16977,7 +16977,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { @@ -17036,7 +17036,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { @@ -17096,7 +17096,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17167,7 +17167,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { @@ -17226,7 +17226,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { @@ -17285,7 +17285,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { @@ -17347,7 +17347,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17409,7 +17409,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { @@ -17471,7 +17471,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { @@ -17594,7 +17594,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17682,7 +17682,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17766,7 +17766,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { @@ -17843,7 +17843,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { @@ -17918,7 +17918,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18010,7 +18010,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { @@ -18075,7 +18075,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18149,7 +18149,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { @@ -18223,7 +18223,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { @@ -18298,7 +18298,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18387,7 +18387,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { @@ -18467,7 +18467,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18563,7 +18563,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18640,7 +18640,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { @@ -18717,7 +18717,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { @@ -18813,7 +18813,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18903,7 +18903,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -18991,7 +18991,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19079,7 +19079,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { @@ -19156,7 +19156,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { @@ -19221,7 +19221,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19295,7 +19295,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { @@ -19371,7 +19371,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19457,7 +19457,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { @@ -19542,7 +19542,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -19625,7 +19625,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19719,7 +19719,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { @@ -19799,7 +19799,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19888,7 +19888,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -19978,7 +19978,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20087,7 +20087,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { @@ -20186,7 +20186,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -20286,7 +20286,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20353,7 +20353,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20432,7 +20432,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { @@ -20509,7 +20509,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20583,7 +20583,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { @@ -20660,7 +20660,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -20738,7 +20738,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20809,7 +20809,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20882,7 +20882,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20964,7 +20964,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21046,7 +21046,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21167,7 +21167,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21249,7 +21249,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21328,7 +21328,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21458,7 +21458,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21695,7 +21695,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21786,7 +21786,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21901,7 +21901,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22032,7 +22032,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22100,7 +22100,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { @@ -22166,7 +22166,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22244,7 +22244,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -22322,7 +22322,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -22399,7 +22399,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { @@ -22470,7 +22470,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22541,7 +22541,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22618,7 +22618,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { @@ -22704,7 +22704,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22796,7 +22796,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -22885,7 +22885,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22971,7 +22971,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23058,7 +23058,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23132,7 +23132,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23210,7 +23210,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { @@ -23290,7 +23290,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { @@ -23368,7 +23368,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23454,7 +23454,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { @@ -23525,7 +23525,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23600,7 +23600,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { @@ -23675,7 +23675,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" }, { @@ -23747,7 +23747,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23833,7 +23833,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -23921,7 +23921,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -23989,7 +23989,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24066,7 +24066,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { @@ -24134,7 +24134,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24208,7 +24208,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { @@ -24285,7 +24285,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { @@ -24365,7 +24365,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24454,7 +24454,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { @@ -24558,7 +24558,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24638,7 +24638,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24724,7 +24724,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { @@ -24810,7 +24810,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -24888,7 +24888,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24986,7 +24986,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { @@ -25066,7 +25066,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25153,7 +25153,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { @@ -25234,7 +25234,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { @@ -25330,7 +25330,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -25392,7 +25392,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25466,7 +25466,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { @@ -25525,7 +25525,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { @@ -25587,7 +25587,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25663,7 +25663,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { @@ -25737,7 +25737,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25826,7 +25826,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25903,7 +25903,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { @@ -25994,7 +25994,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -26079,7 +26079,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { @@ -26159,7 +26159,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { @@ -26230,7 +26230,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { @@ -26299,7 +26299,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { @@ -26379,7 +26379,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { @@ -26454,7 +26454,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26529,7 +26529,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { @@ -26607,7 +26607,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { @@ -26683,7 +26683,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26773,7 +26773,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -26860,7 +26860,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26961,7 +26961,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { @@ -27056,7 +27056,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -27146,7 +27146,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27219,7 +27219,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { @@ -27305,7 +27305,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27415,7 +27415,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27501,7 +27501,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27569,7 +27569,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27654,7 +27654,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27734,7 +27734,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27811,7 +27811,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -27888,7 +27888,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -27965,7 +27965,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { @@ -28040,7 +28040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28129,7 +28129,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -28282,7 +28282,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28347,7 +28347,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28430,7 +28430,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28506,7 +28506,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28574,7 +28574,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28636,7 +28636,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { @@ -28710,7 +28710,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { @@ -28781,7 +28781,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28855,7 +28855,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { @@ -28926,7 +28926,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" }, { @@ -28998,7 +28998,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29084,7 +29084,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -29164,7 +29164,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29249,7 +29249,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { @@ -29329,7 +29329,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -29397,7 +29397,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29474,7 +29474,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { @@ -29555,7 +29555,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29639,7 +29639,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { @@ -29720,7 +29720,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29804,7 +29804,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { @@ -29886,7 +29886,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29982,7 +29982,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -30075,7 +30075,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30174,7 +30174,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { @@ -30267,7 +30267,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -30344,7 +30344,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30424,7 +30424,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { @@ -30515,7 +30515,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -30588,7 +30588,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { @@ -30660,7 +30660,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30734,7 +30734,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { 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 8093c4abe4..2d379ba9df 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 @@ -29078,7 +29078,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29121,7 +29121,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29165,7 +29165,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29209,7 +29209,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29251,7 +29251,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29298,7 +29298,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29353,7 +29353,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29407,7 +29407,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29468,7 +29468,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29518,7 +29518,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29570,7 +29570,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29628,7 +29628,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29683,7 +29683,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29745,7 +29745,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29818,7 +29818,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29873,7 +29873,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29936,7 +29936,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29986,7 +29986,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30032,7 +30032,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30095,7 +30095,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30143,7 +30143,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30186,7 +30186,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30240,7 +30240,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30298,7 +30298,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30350,7 +30350,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30410,7 +30410,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30474,7 +30474,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30530,7 +30530,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30586,7 +30586,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30634,7 +30634,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30687,7 +30687,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30746,7 +30746,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30802,7 +30802,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30867,7 +30867,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30938,7 +30938,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31002,7 +31002,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31061,7 +31061,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31117,7 +31117,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31182,7 +31182,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31246,7 +31246,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31294,7 +31294,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31342,7 +31342,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31402,7 +31402,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31464,7 +31464,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31527,7 +31527,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31573,7 +31573,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31623,7 +31623,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31669,7 +31669,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31717,7 +31717,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31767,7 +31767,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31823,7 +31823,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31883,7 +31883,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31936,7 +31936,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31981,7 +31981,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32040,7 +32040,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32086,7 +32086,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32137,7 +32137,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32200,7 +32200,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32251,7 +32251,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32315,7 +32315,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32371,7 +32371,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32429,7 +32429,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32494,7 +32494,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32549,7 +32549,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32614,7 +32614,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32673,7 +32673,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32735,7 +32735,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32795,7 +32795,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32849,7 +32849,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32915,7 +32915,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32981,7 +32981,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33040,7 +33040,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33093,7 +33093,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33145,7 +33145,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33209,7 +33209,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33270,7 +33270,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33332,7 +33332,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33398,7 +33398,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33459,7 +33459,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33527,7 +33527,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33591,7 +33591,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33652,7 +33652,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33705,7 +33705,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33771,7 +33771,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33839,7 +33839,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33896,7 +33896,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33958,7 +33958,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34011,7 +34011,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34073,7 +34073,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34128,7 +34128,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34193,7 +34193,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34259,7 +34259,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34333,7 +34333,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34400,7 +34400,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34464,7 +34464,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34539,7 +34539,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34599,7 +34599,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34655,7 +34655,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34719,7 +34719,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34791,7 +34791,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34857,7 +34857,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34988,7 +34988,7 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35049,7 +35049,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35115,7 +35115,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35184,7 +35184,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35250,7 +35250,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35325,7 +35325,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35410,7 +35410,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35468,7 +35468,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35525,7 +35525,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35587,7 +35587,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35648,7 +35648,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35715,7 +35715,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35769,7 +35769,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35841,7 +35841,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35901,7 +35901,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35971,7 +35971,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36025,7 +36025,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36079,7 +36079,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36142,7 +36142,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36209,7 +36209,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36269,7 +36269,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36330,7 +36330,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36399,7 +36399,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36462,7 +36462,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36522,7 +36522,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36589,7 +36589,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36644,7 +36644,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36730,7 +36730,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36787,7 +36787,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36844,7 +36844,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36905,7 +36905,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36967,7 +36967,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37023,7 +37023,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37085,7 +37085,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37136,7 +37136,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37202,7 +37202,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37251,7 +37251,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37295,7 +37295,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37351,7 +37351,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37407,7 +37407,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37456,7 +37456,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37518,7 +37518,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37575,7 +37575,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37629,7 +37629,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37681,7 +37681,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37731,7 +37731,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37793,7 +37793,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37849,7 +37849,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37915,7 +37915,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37981,7 +37981,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38057,7 +38057,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38133,7 +38133,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38178,7 +38178,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38325,7 +38325,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38401,7 +38401,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38470,7 +38470,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38552,7 +38552,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38609,7 +38609,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38680,7 +38680,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38772,7 +38772,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38857,7 +38857,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38902,7 +38902,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38968,7 +38968,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39022,7 +39022,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39078,7 +39078,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39148,7 +39148,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39206,7 +39206,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39305,7 +39305,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39367,7 +39367,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39411,7 +39411,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39485,7 +39485,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39558,7 +39558,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39630,7 +39630,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39679,7 +39679,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39743,7 +39743,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39806,7 +39806,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39881,7 +39881,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39958,7 +39958,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40013,7 +40013,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40067,7 +40067,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40121,7 +40121,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40177,7 +40177,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40231,7 +40231,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40293,7 +40293,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40342,7 +40342,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40392,7 +40392,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40474,7 +40474,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40557,7 +40557,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40650,7 +40650,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40719,7 +40719,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40771,7 +40771,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40818,7 +40818,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40880,7 +40880,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40942,7 +40942,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40983,7 +40983,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41024,7 +41024,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41073,7 +41073,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41118,7 +41118,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41163,7 +41163,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41209,7 +41209,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41251,7 +41251,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41293,7 +41293,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41380,7 +41380,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41437,7 +41437,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41494,7 +41494,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41551,7 +41551,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41603,7 +41603,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41666,7 +41666,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41715,7 +41715,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41766,7 +41766,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41822,7 +41822,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41874,7 +41874,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41936,7 +41936,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41995,7 +41995,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42058,7 +42058,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42111,7 +42111,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42168,7 +42168,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42235,7 +42235,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42298,7 +42298,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42360,7 +42360,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42420,7 +42420,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42479,7 +42479,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42541,7 +42541,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42604,7 +42604,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42679,7 +42679,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42752,7 +42752,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42822,7 +42822,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42874,7 +42874,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42922,7 +42922,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42972,7 +42972,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43029,7 +43029,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43092,7 +43092,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43156,7 +43156,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43215,7 +43215,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43281,7 +43281,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43331,7 +43331,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43385,7 +43385,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43438,7 +43438,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43507,7 +43507,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43564,7 +43564,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43618,7 +43618,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43663,7 +43663,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43713,7 +43713,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43766,7 +43766,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43822,7 +43822,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43904,7 +43904,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43957,7 +43957,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44012,7 +44012,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44110,7 +44110,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44319,7 +44319,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44389,7 +44389,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44476,7 +44476,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44570,7 +44570,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44616,7 +44616,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44661,7 +44661,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44714,7 +44714,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44771,7 +44771,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44829,7 +44829,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44883,7 +44883,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44928,7 +44928,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44980,7 +44980,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45040,7 +45040,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45103,7 +45103,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45169,7 +45169,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45225,7 +45225,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45287,7 +45287,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45338,7 +45338,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45393,7 +45393,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45452,7 +45452,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45506,7 +45506,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45565,7 +45565,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45615,7 +45615,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45666,7 +45666,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45721,7 +45721,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45770,7 +45770,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45828,7 +45828,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45892,7 +45892,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45942,7 +45942,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45994,7 +45994,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46042,7 +46042,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46092,7 +46092,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46148,7 +46148,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46203,7 +46203,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46263,7 +46263,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46340,7 +46340,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46392,7 +46392,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46450,7 +46450,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46512,7 +46512,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46566,7 +46566,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46632,7 +46632,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46687,7 +46687,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46746,7 +46746,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46807,7 +46807,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46873,7 +46873,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46919,7 +46919,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46972,7 +46972,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47020,7 +47020,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47062,7 +47062,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47113,7 +47113,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47168,7 +47168,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47225,7 +47225,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47278,7 +47278,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47340,7 +47340,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47399,7 +47399,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47454,7 +47454,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47509,7 +47509,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47567,7 +47567,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47614,7 +47614,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47668,7 +47668,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47720,7 +47720,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47771,7 +47771,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47829,7 +47829,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47882,7 +47882,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47944,7 +47944,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48005,7 +48005,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48071,7 +48071,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48141,7 +48141,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48204,7 +48204,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48254,7 +48254,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48318,7 +48318,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48395,7 +48395,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48457,7 +48457,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48503,7 +48503,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48565,7 +48565,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48619,7 +48619,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48671,7 +48671,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48727,7 +48727,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48783,7 +48783,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48836,7 +48836,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48897,7 +48897,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49007,7 +49007,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49066,7 +49066,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49126,7 +49126,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49170,7 +49170,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49216,7 +49216,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49259,7 +49259,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49309,7 +49309,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49359,7 +49359,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49409,7 +49409,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49461,7 +49461,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49510,7 +49510,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49568,7 +49568,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49624,7 +49624,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49681,7 +49681,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49739,7 +49739,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49785,7 +49785,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49837,7 +49837,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49893,7 +49893,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49950,7 +49950,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50012,7 +50012,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50069,7 +50069,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50135,7 +50135,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50201,7 +50201,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50269,7 +50269,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50338,7 +50338,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50393,7 +50393,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50442,7 +50442,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50498,7 +50498,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50560,7 +50560,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50619,7 +50619,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50675,7 +50675,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50725,7 +50725,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ 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 b02da1651e..74bdfd57ee 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 @@ -250,7 +250,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { @@ -312,7 +312,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -380,7 +380,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { @@ -448,7 +448,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { @@ -507,7 +507,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { @@ -578,7 +578,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -656,7 +656,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { @@ -732,7 +732,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -819,7 +819,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { @@ -887,7 +887,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -964,7 +964,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { @@ -1042,7 +1042,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -1121,7 +1121,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1211,7 +1211,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { @@ -1314,7 +1314,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1391,7 +1391,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { @@ -1463,7 +1463,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" }, { @@ -1539,7 +1539,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1623,7 +1623,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { @@ -1695,7 +1695,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1760,7 +1760,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1831,7 +1831,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { @@ -1922,7 +1922,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { @@ -2001,7 +2001,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2066,7 +2066,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { @@ -2129,7 +2129,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { @@ -2209,7 +2209,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { @@ -2290,7 +2290,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { @@ -2365,7 +2365,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2458,7 +2458,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { @@ -2538,7 +2538,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { @@ -2619,7 +2619,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2701,7 +2701,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2772,7 +2772,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2846,7 +2846,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { @@ -2921,7 +2921,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { @@ -2997,7 +2997,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3084,7 +3084,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -3174,7 +3174,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -3261,7 +3261,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3348,7 +3348,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3425,7 +3425,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3515,7 +3515,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { @@ -3602,7 +3602,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3677,7 +3677,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3748,7 +3748,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { @@ -3829,7 +3829,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { @@ -3924,7 +3924,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -4010,7 +4010,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -4072,7 +4072,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4146,7 +4146,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { @@ -4208,7 +4208,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4279,7 +4279,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { @@ -4351,7 +4351,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4432,7 +4432,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { @@ -4511,7 +4511,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -4585,7 +4585,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4651,7 +4651,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4738,7 +4738,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { @@ -4800,7 +4800,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4875,7 +4875,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { @@ -4961,7 +4961,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -5035,7 +5035,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5128,7 +5128,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { @@ -5209,7 +5209,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5294,7 +5294,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { @@ -5385,7 +5385,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5470,7 +5470,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { @@ -5555,7 +5555,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { @@ -5643,7 +5643,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { @@ -5722,7 +5722,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5816,7 +5816,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { @@ -5900,7 +5900,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5989,7 +5989,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { @@ -6069,7 +6069,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6152,7 +6152,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6244,7 +6244,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -6333,7 +6333,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6417,7 +6417,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6492,7 +6492,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6566,7 +6566,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6654,7 +6654,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { @@ -6741,7 +6741,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6827,7 +6827,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { @@ -6913,7 +6913,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -7000,7 +7000,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7077,7 +7077,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7166,7 +7166,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -7253,7 +7253,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7351,7 +7351,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -7448,7 +7448,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { @@ -7542,7 +7542,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { @@ -7619,7 +7619,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7708,7 +7708,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7785,7 +7785,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7874,7 +7874,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7958,7 +7958,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8051,7 +8051,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8128,7 +8128,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8225,7 +8225,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { @@ -8322,7 +8322,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { @@ -8410,7 +8410,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { @@ -8506,7 +8506,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { @@ -8607,7 +8607,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8702,7 +8702,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -8792,7 +8792,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8899,7 +8899,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { @@ -8979,7 +8979,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9059,7 +9059,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9151,7 +9151,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { @@ -9250,7 +9250,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9345,7 +9345,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { @@ -9526,7 +9526,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { @@ -9613,7 +9613,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9709,7 +9709,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { @@ -9823,7 +9823,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9916,7 +9916,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -10010,7 +10010,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10118,7 +10118,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { @@ -10202,7 +10202,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10284,7 +10284,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10374,7 +10374,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { @@ -10456,7 +10456,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10552,7 +10552,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { @@ -10624,7 +10624,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { @@ -10722,7 +10722,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10809,7 +10809,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { @@ -10899,7 +10899,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10977,7 +10977,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11054,7 +11054,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11145,7 +11145,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -11236,7 +11236,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -11312,7 +11312,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11396,7 +11396,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { @@ -11494,7 +11494,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11584,7 +11584,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -11669,7 +11669,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11765,7 +11765,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -11839,7 +11839,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11933,7 +11933,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12080,7 +12080,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12202,7 +12202,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12267,7 +12267,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12356,7 +12356,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12439,7 +12439,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { @@ -12510,7 +12510,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12594,7 +12594,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { @@ -12667,7 +12667,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12763,7 +12763,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { @@ -12828,7 +12828,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12911,7 +12911,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { @@ -12988,7 +12988,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -13060,7 +13060,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13152,7 +13152,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { @@ -13230,7 +13230,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13310,7 +13310,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { @@ -13381,7 +13381,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { @@ -13453,7 +13453,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13545,7 +13545,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { @@ -13622,7 +13622,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13705,7 +13705,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -13789,7 +13789,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13887,7 +13887,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -13988,7 +13988,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14059,7 +14059,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14294,7 +14294,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { @@ -14381,7 +14381,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -14463,7 +14463,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14565,7 +14565,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { @@ -14648,7 +14648,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14745,7 +14745,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { @@ -14873,7 +14873,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14998,7 +14998,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15060,7 +15060,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15140,7 +15140,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { @@ -15214,7 +15214,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15297,7 +15297,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { @@ -15394,7 +15394,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -15478,7 +15478,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15616,7 +15616,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15702,7 +15702,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15767,7 +15767,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15878,7 +15878,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15992,7 +15992,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16098,7 +16098,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16175,7 +16175,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16265,7 +16265,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { @@ -16353,7 +16353,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16464,7 +16464,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -16572,7 +16572,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -16647,7 +16647,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16726,7 +16726,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -16799,7 +16799,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -16872,7 +16872,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { @@ -16949,7 +16949,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17037,7 +17037,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -17103,7 +17103,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17177,7 +17177,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17269,7 +17269,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { @@ -17362,7 +17362,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17466,7 +17466,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -17551,7 +17551,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { @@ -17637,7 +17637,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { @@ -17719,7 +17719,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17790,7 +17790,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17861,7 +17861,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { @@ -17920,7 +17920,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { @@ -17980,7 +17980,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18051,7 +18051,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { @@ -18110,7 +18110,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { @@ -18169,7 +18169,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { @@ -18231,7 +18231,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18293,7 +18293,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { @@ -18355,7 +18355,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { @@ -18478,7 +18478,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18566,7 +18566,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18650,7 +18650,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { @@ -18727,7 +18727,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { @@ -18802,7 +18802,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18894,7 +18894,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { @@ -18959,7 +18959,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19033,7 +19033,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { @@ -19107,7 +19107,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { @@ -19182,7 +19182,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19271,7 +19271,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { @@ -19351,7 +19351,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19447,7 +19447,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19524,7 +19524,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { @@ -19601,7 +19601,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { @@ -19697,7 +19697,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19787,7 +19787,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -19875,7 +19875,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19963,7 +19963,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { @@ -20040,7 +20040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { @@ -20105,7 +20105,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20179,7 +20179,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { @@ -20255,7 +20255,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20341,7 +20341,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { @@ -20426,7 +20426,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -20509,7 +20509,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20603,7 +20603,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { @@ -20683,7 +20683,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20772,7 +20772,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -20862,7 +20862,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20971,7 +20971,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { @@ -21070,7 +21070,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -21170,7 +21170,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21237,7 +21237,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21316,7 +21316,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { @@ -21393,7 +21393,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21467,7 +21467,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { @@ -21544,7 +21544,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -21622,7 +21622,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21693,7 +21693,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21766,7 +21766,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21837,7 +21837,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21919,7 +21919,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22001,7 +22001,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22122,7 +22122,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22204,7 +22204,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22283,7 +22283,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22413,7 +22413,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22650,7 +22650,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22741,7 +22741,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22856,7 +22856,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22987,7 +22987,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23109,7 +23109,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23177,7 +23177,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { @@ -23243,7 +23243,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23321,7 +23321,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -23399,7 +23399,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -23476,7 +23476,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { @@ -23547,7 +23547,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23618,7 +23618,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23695,7 +23695,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { @@ -23781,7 +23781,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23873,7 +23873,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -23962,7 +23962,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24048,7 +24048,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24135,7 +24135,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24209,7 +24209,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24287,7 +24287,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { @@ -24367,7 +24367,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { @@ -24445,7 +24445,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24531,7 +24531,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { @@ -24602,7 +24602,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24677,7 +24677,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { @@ -24752,7 +24752,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" }, { @@ -24824,7 +24824,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24910,7 +24910,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -24998,7 +24998,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -25066,7 +25066,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25143,7 +25143,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { @@ -25211,7 +25211,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25285,7 +25285,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { @@ -25362,7 +25362,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { @@ -25442,7 +25442,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25531,7 +25531,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { @@ -25635,7 +25635,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25715,7 +25715,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25801,7 +25801,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { @@ -25887,7 +25887,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -25965,7 +25965,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26063,7 +26063,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { @@ -26143,7 +26143,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26230,7 +26230,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { @@ -26311,7 +26311,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { @@ -26407,7 +26407,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -26469,7 +26469,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26543,7 +26543,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { @@ -26602,7 +26602,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { @@ -26664,7 +26664,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26740,7 +26740,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { @@ -26814,7 +26814,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26903,7 +26903,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26980,7 +26980,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { @@ -27071,7 +27071,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -27156,7 +27156,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { @@ -27236,7 +27236,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { @@ -27307,7 +27307,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { @@ -27376,7 +27376,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { @@ -27456,7 +27456,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { @@ -27531,7 +27531,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27606,7 +27606,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { @@ -27684,7 +27684,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { @@ -27760,7 +27760,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27850,7 +27850,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -27937,7 +27937,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28038,7 +28038,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { @@ -28133,7 +28133,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -28223,7 +28223,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28296,7 +28296,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { @@ -28382,7 +28382,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28492,7 +28492,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28578,7 +28578,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28646,7 +28646,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28731,7 +28731,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28811,7 +28811,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28888,7 +28888,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -28965,7 +28965,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -29042,7 +29042,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { @@ -29117,7 +29117,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29206,7 +29206,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -29359,7 +29359,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29424,7 +29424,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29507,7 +29507,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29583,7 +29583,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29651,7 +29651,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29713,7 +29713,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { @@ -29787,7 +29787,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { @@ -29858,7 +29858,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29932,7 +29932,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { @@ -30003,7 +30003,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" }, { @@ -30075,7 +30075,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30161,7 +30161,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -30241,7 +30241,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30326,7 +30326,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { @@ -30406,7 +30406,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -30474,7 +30474,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30551,7 +30551,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { @@ -30632,7 +30632,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30716,7 +30716,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { @@ -30797,7 +30797,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30881,7 +30881,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { @@ -30963,7 +30963,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31059,7 +31059,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -31152,7 +31152,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31251,7 +31251,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { @@ -31344,7 +31344,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -31421,7 +31421,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31501,7 +31501,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { @@ -31592,7 +31592,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -31640,7 +31640,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" }, { @@ -31713,7 +31713,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { @@ -31785,7 +31785,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31859,7 +31859,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { 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 5320cde398..fce2426734 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 @@ -29599,7 +29599,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29642,7 +29642,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29686,7 +29686,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29730,7 +29730,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29772,7 +29772,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29819,7 +29819,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29874,7 +29874,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29928,7 +29928,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29989,7 +29989,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30039,7 +30039,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30091,7 +30091,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30149,7 +30149,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30204,7 +30204,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30266,7 +30266,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30339,7 +30339,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30395,7 +30395,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30449,7 +30449,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30502,7 +30502,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30563,7 +30563,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30617,7 +30617,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30662,7 +30662,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30708,7 +30708,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30771,7 +30771,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30819,7 +30819,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30862,7 +30862,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30916,7 +30916,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30974,7 +30974,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31026,7 +31026,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31086,7 +31086,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31150,7 +31150,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31206,7 +31206,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31262,7 +31262,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31310,7 +31310,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31363,7 +31363,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31422,7 +31422,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31478,7 +31478,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31543,7 +31543,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31614,7 +31614,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31678,7 +31678,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31737,7 +31737,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31793,7 +31793,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31858,7 +31858,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31922,7 +31922,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31970,7 +31970,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32018,7 +32018,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32078,7 +32078,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32140,7 +32140,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32203,7 +32203,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32249,7 +32249,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32299,7 +32299,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32345,7 +32345,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32393,7 +32393,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32443,7 +32443,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32499,7 +32499,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32559,7 +32559,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32612,7 +32612,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32657,7 +32657,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32716,7 +32716,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32762,7 +32762,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32813,7 +32813,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32876,7 +32876,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32927,7 +32927,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32991,7 +32991,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33047,7 +33047,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33105,7 +33105,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33170,7 +33170,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33225,7 +33225,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33290,7 +33290,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33400,7 +33400,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33463,7 +33463,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33517,7 +33517,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33579,7 +33579,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33639,7 +33639,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33693,7 +33693,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33759,7 +33759,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33825,7 +33825,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33884,7 +33884,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33937,7 +33937,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33989,7 +33989,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34053,7 +34053,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34114,7 +34114,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34176,7 +34176,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34242,7 +34242,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34303,7 +34303,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34371,7 +34371,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34435,7 +34435,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34496,7 +34496,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34549,7 +34549,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34615,7 +34615,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34683,7 +34683,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34740,7 +34740,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34802,7 +34802,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34855,7 +34855,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34917,7 +34917,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34972,7 +34972,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35037,7 +35037,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35091,7 +35091,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35158,7 +35158,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35229,7 +35229,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35294,7 +35294,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35364,7 +35364,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35438,7 +35438,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35505,7 +35505,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35569,7 +35569,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35644,7 +35644,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35704,7 +35704,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35760,7 +35760,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35824,7 +35824,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35896,7 +35896,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35962,7 +35962,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36093,7 +36093,7 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36154,7 +36154,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36220,7 +36220,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36289,7 +36289,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36355,7 +36355,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36430,7 +36430,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36515,7 +36515,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36573,7 +36573,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36630,7 +36630,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36692,7 +36692,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36753,7 +36753,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36820,7 +36820,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36874,7 +36874,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36946,7 +36946,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37006,7 +37006,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37076,7 +37076,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37130,7 +37130,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37184,7 +37184,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37247,7 +37247,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37314,7 +37314,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37374,7 +37374,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37435,7 +37435,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37504,7 +37504,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37567,7 +37567,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37627,7 +37627,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37694,7 +37694,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37749,7 +37749,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37835,7 +37835,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37892,7 +37892,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37949,7 +37949,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38010,7 +38010,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38059,7 +38059,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38117,7 +38117,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38173,7 +38173,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38235,7 +38235,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38286,7 +38286,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38352,7 +38352,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38401,7 +38401,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38445,7 +38445,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38501,7 +38501,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38557,7 +38557,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38606,7 +38606,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38668,7 +38668,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38725,7 +38725,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38779,7 +38779,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38831,7 +38831,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38881,7 +38881,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38943,7 +38943,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38999,7 +38999,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39065,7 +39065,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39131,7 +39131,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39207,7 +39207,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39283,7 +39283,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39328,7 +39328,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39475,7 +39475,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39551,7 +39551,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39620,7 +39620,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39702,7 +39702,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39759,7 +39759,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39830,7 +39830,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39922,7 +39922,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40007,7 +40007,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40052,7 +40052,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40118,7 +40118,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40172,7 +40172,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40228,7 +40228,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40298,7 +40298,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40356,7 +40356,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40455,7 +40455,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40517,7 +40517,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40561,7 +40561,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40635,7 +40635,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40708,7 +40708,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40780,7 +40780,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40829,7 +40829,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40893,7 +40893,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40956,7 +40956,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41031,7 +41031,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41108,7 +41108,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41163,7 +41163,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41217,7 +41217,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41271,7 +41271,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41327,7 +41327,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41381,7 +41381,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41443,7 +41443,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41492,7 +41492,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41542,7 +41542,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41624,7 +41624,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41707,7 +41707,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41800,7 +41800,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41869,7 +41869,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41921,7 +41921,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41968,7 +41968,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42030,7 +42030,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42092,7 +42092,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42133,7 +42133,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42174,7 +42174,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42223,7 +42223,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42268,7 +42268,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42313,7 +42313,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42359,7 +42359,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42401,7 +42401,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42443,7 +42443,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42530,7 +42530,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42587,7 +42587,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42644,7 +42644,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42701,7 +42701,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42753,7 +42753,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42816,7 +42816,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42865,7 +42865,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42916,7 +42916,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42972,7 +42972,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43024,7 +43024,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43086,7 +43086,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43145,7 +43145,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43208,7 +43208,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43261,7 +43261,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43318,7 +43318,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43385,7 +43385,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43448,7 +43448,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43510,7 +43510,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43570,7 +43570,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43629,7 +43629,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43691,7 +43691,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43754,7 +43754,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43829,7 +43829,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43902,7 +43902,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43972,7 +43972,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44024,7 +44024,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44072,7 +44072,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44122,7 +44122,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44179,7 +44179,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44242,7 +44242,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44306,7 +44306,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44365,7 +44365,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44431,7 +44431,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44481,7 +44481,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44535,7 +44535,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44588,7 +44588,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44657,7 +44657,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44714,7 +44714,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44768,7 +44768,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44813,7 +44813,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44863,7 +44863,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44948,7 +44948,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44993,7 +44993,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45046,7 +45046,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45102,7 +45102,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45184,7 +45184,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45237,7 +45237,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45292,7 +45292,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45390,7 +45390,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45599,7 +45599,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45669,7 +45669,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45756,7 +45756,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45850,7 +45850,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45896,7 +45896,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45941,7 +45941,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45994,7 +45994,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46051,7 +46051,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46109,7 +46109,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46163,7 +46163,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46208,7 +46208,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46260,7 +46260,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46320,7 +46320,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46383,7 +46383,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46449,7 +46449,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46505,7 +46505,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46567,7 +46567,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46618,7 +46618,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46673,7 +46673,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46732,7 +46732,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46786,7 +46786,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46845,7 +46845,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46895,7 +46895,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46946,7 +46946,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47001,7 +47001,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47050,7 +47050,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47108,7 +47108,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47172,7 +47172,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47222,7 +47222,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47274,7 +47274,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47322,7 +47322,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47372,7 +47372,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47428,7 +47428,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47483,7 +47483,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47543,7 +47543,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47620,7 +47620,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47672,7 +47672,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47730,7 +47730,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47792,7 +47792,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47846,7 +47846,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47912,7 +47912,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47967,7 +47967,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48026,7 +48026,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48087,7 +48087,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48153,7 +48153,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48199,7 +48199,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48252,7 +48252,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48300,7 +48300,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48342,7 +48342,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48393,7 +48393,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48448,7 +48448,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48505,7 +48505,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48558,7 +48558,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48620,7 +48620,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48679,7 +48679,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48734,7 +48734,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48789,7 +48789,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48847,7 +48847,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48894,7 +48894,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48948,7 +48948,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49000,7 +49000,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49051,7 +49051,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49109,7 +49109,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49162,7 +49162,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49224,7 +49224,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49285,7 +49285,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49351,7 +49351,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49421,7 +49421,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49484,7 +49484,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49534,7 +49534,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49598,7 +49598,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49675,7 +49675,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49737,7 +49737,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49783,7 +49783,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49845,7 +49845,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49899,7 +49899,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49951,7 +49951,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50007,7 +50007,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50063,7 +50063,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50116,7 +50116,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50177,7 +50177,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50287,7 +50287,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50346,7 +50346,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50406,7 +50406,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50450,7 +50450,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50496,7 +50496,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50539,7 +50539,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50589,7 +50589,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50639,7 +50639,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50689,7 +50689,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50741,7 +50741,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50790,7 +50790,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50848,7 +50848,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50904,7 +50904,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50961,7 +50961,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51019,7 +51019,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51065,7 +51065,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51117,7 +51117,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51173,7 +51173,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51230,7 +51230,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51292,7 +51292,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51349,7 +51349,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51415,7 +51415,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51481,7 +51481,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51549,7 +51549,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51618,7 +51618,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51673,7 +51673,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51722,7 +51722,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51778,7 +51778,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51840,7 +51840,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51880,7 +51880,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51935,7 +51935,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51991,7 +51991,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52041,7 +52041,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ 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 206424dd89..babb6d409e 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 @@ -250,7 +250,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { @@ -312,7 +312,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -380,7 +380,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { @@ -448,7 +448,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { @@ -507,7 +507,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { @@ -578,7 +578,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -656,7 +656,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { @@ -732,7 +732,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -819,7 +819,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { @@ -887,7 +887,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -964,7 +964,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { @@ -1042,7 +1042,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -1121,7 +1121,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1211,7 +1211,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { @@ -1314,7 +1314,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1391,7 +1391,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { @@ -1463,7 +1463,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" }, { @@ -1539,7 +1539,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1623,7 +1623,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { @@ -1695,7 +1695,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1760,7 +1760,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1831,7 +1831,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { @@ -1922,7 +1922,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { @@ -2001,7 +2001,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2066,7 +2066,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { @@ -2129,7 +2129,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { @@ -2209,7 +2209,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { @@ -2290,7 +2290,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { @@ -2365,7 +2365,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2458,7 +2458,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { @@ -2538,7 +2538,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { @@ -2619,7 +2619,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2701,7 +2701,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2772,7 +2772,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2846,7 +2846,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { @@ -2921,7 +2921,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { @@ -2997,7 +2997,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3084,7 +3084,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -3174,7 +3174,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -3261,7 +3261,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3348,7 +3348,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3425,7 +3425,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3514,7 +3514,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { @@ -3600,7 +3600,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3675,7 +3675,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3746,7 +3746,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { @@ -3827,7 +3827,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { @@ -3922,7 +3922,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -4008,7 +4008,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -4070,7 +4070,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4144,7 +4144,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { @@ -4206,7 +4206,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4277,7 +4277,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { @@ -4348,7 +4348,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4480,7 +4480,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { @@ -4558,7 +4558,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -4665,7 +4665,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4730,7 +4730,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4817,7 +4817,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { @@ -4879,7 +4879,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4954,7 +4954,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { @@ -5040,7 +5040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -5114,7 +5114,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5207,7 +5207,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { @@ -5288,7 +5288,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5373,7 +5373,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { @@ -5464,7 +5464,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5549,7 +5549,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { @@ -5634,7 +5634,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { @@ -5722,7 +5722,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { @@ -5801,7 +5801,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5895,7 +5895,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { @@ -5979,7 +5979,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6068,7 +6068,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { @@ -6148,7 +6148,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6231,7 +6231,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6323,7 +6323,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -6412,7 +6412,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6496,7 +6496,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6571,7 +6571,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6645,7 +6645,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6733,7 +6733,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { @@ -6820,7 +6820,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6906,7 +6906,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { @@ -6992,7 +6992,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -7079,7 +7079,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7156,7 +7156,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7245,7 +7245,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -7332,7 +7332,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7430,7 +7430,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -7527,7 +7527,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { @@ -7621,7 +7621,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { @@ -7698,7 +7698,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7787,7 +7787,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7864,7 +7864,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7953,7 +7953,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8037,7 +8037,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8130,7 +8130,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8207,7 +8207,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8304,7 +8304,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { @@ -8401,7 +8401,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { @@ -8489,7 +8489,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { @@ -8585,7 +8585,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { @@ -8686,7 +8686,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8781,7 +8781,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -8871,7 +8871,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8978,7 +8978,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { @@ -9058,7 +9058,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9138,7 +9138,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9230,7 +9230,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { @@ -9329,7 +9329,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9424,7 +9424,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { @@ -9605,7 +9605,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { @@ -9692,7 +9692,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9788,7 +9788,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { @@ -9902,7 +9902,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9995,7 +9995,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -10089,7 +10089,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10197,7 +10197,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { @@ -10281,7 +10281,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10363,7 +10363,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10453,7 +10453,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { @@ -10535,7 +10535,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10631,7 +10631,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { @@ -10703,7 +10703,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { @@ -10801,7 +10801,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10888,7 +10888,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { @@ -10978,7 +10978,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11058,7 +11058,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11133,7 +11133,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11222,7 +11222,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -11311,7 +11311,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -11405,7 +11405,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11498,7 +11498,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { @@ -11610,7 +11610,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11718,7 +11718,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -11824,7 +11824,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11944,7 +11944,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { @@ -12037,7 +12037,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12138,7 +12138,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12243,7 +12243,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { @@ -12318,7 +12318,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12402,7 +12402,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { @@ -12500,7 +12500,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12590,7 +12590,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12675,7 +12675,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12771,7 +12771,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -12845,7 +12845,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12939,7 +12939,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13086,7 +13086,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13180,7 +13180,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { @@ -13266,7 +13266,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { @@ -13388,7 +13388,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13453,7 +13453,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13542,7 +13542,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13625,7 +13625,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { @@ -13696,7 +13696,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13780,7 +13780,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { @@ -13853,7 +13853,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13949,7 +13949,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { @@ -14014,7 +14014,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14097,7 +14097,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { @@ -14174,7 +14174,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -14246,7 +14246,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14338,7 +14338,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { @@ -14416,7 +14416,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14496,7 +14496,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { @@ -14567,7 +14567,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { @@ -14639,7 +14639,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14731,7 +14731,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { @@ -14808,7 +14808,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14891,7 +14891,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -14975,7 +14975,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15073,7 +15073,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -15174,7 +15174,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15245,7 +15245,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15480,7 +15480,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { @@ -15567,7 +15567,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -15649,7 +15649,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15751,7 +15751,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { @@ -15834,7 +15834,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15931,7 +15931,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { @@ -16059,7 +16059,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16184,7 +16184,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16246,7 +16246,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16326,7 +16326,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { @@ -16400,7 +16400,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16483,7 +16483,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { @@ -16580,7 +16580,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -16664,7 +16664,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16802,7 +16802,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16888,7 +16888,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16953,7 +16953,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17064,7 +17064,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17178,7 +17178,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17284,7 +17284,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17361,7 +17361,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17451,7 +17451,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { @@ -17539,7 +17539,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17650,7 +17650,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -17758,7 +17758,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -17833,7 +17833,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17912,7 +17912,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -17985,7 +17985,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -18058,7 +18058,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { @@ -18135,7 +18135,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18223,7 +18223,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -18289,7 +18289,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18363,7 +18363,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18455,7 +18455,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { @@ -18548,7 +18548,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18652,7 +18652,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -18735,7 +18735,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { @@ -18818,7 +18818,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { @@ -18899,7 +18899,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18970,7 +18970,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19041,7 +19041,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { @@ -19100,7 +19100,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { @@ -19160,7 +19160,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19231,7 +19231,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { @@ -19290,7 +19290,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { @@ -19349,7 +19349,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { @@ -19411,7 +19411,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19473,7 +19473,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { @@ -19535,7 +19535,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { @@ -19658,7 +19658,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19746,7 +19746,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19830,7 +19830,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { @@ -19907,7 +19907,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { @@ -19982,7 +19982,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20074,7 +20074,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { @@ -20139,7 +20139,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20213,7 +20213,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { @@ -20287,7 +20287,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { @@ -20362,7 +20362,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20451,7 +20451,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { @@ -20531,7 +20531,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20627,7 +20627,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20704,7 +20704,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { @@ -20781,7 +20781,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { @@ -20877,7 +20877,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20967,7 +20967,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -21055,7 +21055,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21143,7 +21143,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { @@ -21220,7 +21220,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { @@ -21285,7 +21285,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21359,7 +21359,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { @@ -21435,7 +21435,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21521,7 +21521,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { @@ -21606,7 +21606,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -21689,7 +21689,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21783,7 +21783,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { @@ -21863,7 +21863,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21952,7 +21952,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -22042,7 +22042,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22151,7 +22151,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { @@ -22250,7 +22250,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -22350,7 +22350,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22417,7 +22417,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22496,7 +22496,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { @@ -22573,7 +22573,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22647,7 +22647,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { @@ -22724,7 +22724,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -22802,7 +22802,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22873,7 +22873,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22946,7 +22946,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23017,7 +23017,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23099,7 +23099,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23181,7 +23181,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23302,7 +23302,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23384,7 +23384,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23463,7 +23463,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23593,7 +23593,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23830,7 +23830,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23921,7 +23921,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24036,7 +24036,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24167,7 +24167,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24289,7 +24289,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24357,7 +24357,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { @@ -24423,7 +24423,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24501,7 +24501,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -24579,7 +24579,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -24656,7 +24656,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { @@ -24727,7 +24727,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24798,7 +24798,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24875,7 +24875,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { @@ -24961,7 +24961,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25053,7 +25053,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -25142,7 +25142,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25228,7 +25228,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25315,7 +25315,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25389,7 +25389,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25467,7 +25467,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { @@ -25547,7 +25547,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { @@ -25625,7 +25625,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25711,7 +25711,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { @@ -25782,7 +25782,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25857,7 +25857,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { @@ -25932,7 +25932,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" }, { @@ -26004,7 +26004,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26090,7 +26090,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -26178,7 +26178,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -26246,7 +26246,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26323,7 +26323,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { @@ -26391,7 +26391,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26465,7 +26465,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { @@ -26542,7 +26542,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { @@ -26622,7 +26622,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26711,7 +26711,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { @@ -26815,7 +26815,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26895,7 +26895,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26981,7 +26981,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { @@ -27067,7 +27067,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -27145,7 +27145,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27243,7 +27243,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { @@ -27331,7 +27331,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { @@ -27414,7 +27414,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -27498,7 +27498,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27584,7 +27584,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { @@ -27670,7 +27670,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { @@ -27756,7 +27756,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27836,7 +27836,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27923,7 +27923,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { @@ -28004,7 +28004,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { @@ -28100,7 +28100,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -28162,7 +28162,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28236,7 +28236,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { @@ -28295,7 +28295,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { @@ -28357,7 +28357,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28433,7 +28433,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { @@ -28507,7 +28507,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28596,7 +28596,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28673,7 +28673,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { @@ -28764,7 +28764,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -28834,7 +28834,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { @@ -28919,7 +28919,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { @@ -28999,7 +28999,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { @@ -29070,7 +29070,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { @@ -29139,7 +29139,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { @@ -29219,7 +29219,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { @@ -29294,7 +29294,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29369,7 +29369,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { @@ -29447,7 +29447,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { @@ -29523,7 +29523,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29613,7 +29613,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -29700,7 +29700,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29801,7 +29801,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { @@ -29896,7 +29896,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -29986,7 +29986,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30059,7 +30059,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { @@ -30145,7 +30145,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30255,7 +30255,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30341,7 +30341,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30409,7 +30409,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30494,7 +30494,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30574,7 +30574,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30651,7 +30651,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -30728,7 +30728,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -30805,7 +30805,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { @@ -30880,7 +30880,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30969,7 +30969,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -31122,7 +31122,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31187,7 +31187,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31270,7 +31270,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31346,7 +31346,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31414,7 +31414,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31476,7 +31476,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { @@ -31550,7 +31550,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { @@ -31621,7 +31621,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31695,7 +31695,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { @@ -31766,7 +31766,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" }, { @@ -31838,7 +31838,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31924,7 +31924,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -32004,7 +32004,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32089,7 +32089,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { @@ -32169,7 +32169,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -32237,7 +32237,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32314,7 +32314,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { @@ -32395,7 +32395,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32479,7 +32479,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { @@ -32560,7 +32560,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32644,7 +32644,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { @@ -32726,7 +32726,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32822,7 +32822,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -32915,7 +32915,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -33014,7 +33014,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { @@ -33107,7 +33107,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -33184,7 +33184,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -33264,7 +33264,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { @@ -33355,7 +33355,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -33403,7 +33403,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" }, { @@ -33476,7 +33476,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { @@ -33548,7 +33548,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -33622,7 +33622,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { 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 e85adb25d5..b7b553084e 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 @@ -29866,7 +29866,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29909,7 +29909,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29953,7 +29953,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29997,7 +29997,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30039,7 +30039,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30086,7 +30086,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30141,7 +30141,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30195,7 +30195,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30256,7 +30256,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30306,7 +30306,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30358,7 +30358,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30416,7 +30416,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30471,7 +30471,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30533,7 +30533,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30606,7 +30606,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30662,7 +30662,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30716,7 +30716,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30769,7 +30769,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30830,7 +30830,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30884,7 +30884,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30929,7 +30929,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30975,7 +30975,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31038,7 +31038,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31086,7 +31086,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31129,7 +31129,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31183,7 +31183,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31241,7 +31241,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31293,7 +31293,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31353,7 +31353,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31417,7 +31417,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31473,7 +31473,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31529,7 +31529,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31577,7 +31577,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31630,7 +31630,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31689,7 +31689,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31745,7 +31745,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31810,7 +31810,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31881,7 +31881,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31945,7 +31945,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32004,7 +32004,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32060,7 +32060,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32124,7 +32124,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32187,7 +32187,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32235,7 +32235,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32283,7 +32283,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32343,7 +32343,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32405,7 +32405,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32468,7 +32468,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32514,7 +32514,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32564,7 +32564,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32610,7 +32610,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32658,7 +32658,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32707,7 +32707,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32798,7 +32798,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32857,7 +32857,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32932,7 +32932,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32976,7 +32976,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33035,7 +33035,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33081,7 +33081,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33132,7 +33132,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33195,7 +33195,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33246,7 +33246,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33310,7 +33310,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33366,7 +33366,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33424,7 +33424,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33489,7 +33489,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33544,7 +33544,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33609,7 +33609,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33719,7 +33719,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33782,7 +33782,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33836,7 +33836,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33898,7 +33898,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33958,7 +33958,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34012,7 +34012,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34078,7 +34078,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34144,7 +34144,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34203,7 +34203,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34256,7 +34256,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34308,7 +34308,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34372,7 +34372,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34433,7 +34433,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34495,7 +34495,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34561,7 +34561,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34622,7 +34622,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34690,7 +34690,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34754,7 +34754,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34815,7 +34815,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34868,7 +34868,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34934,7 +34934,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35002,7 +35002,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35059,7 +35059,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35121,7 +35121,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35174,7 +35174,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35236,7 +35236,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35291,7 +35291,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35356,7 +35356,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35410,7 +35410,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35477,7 +35477,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35548,7 +35548,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35613,7 +35613,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35683,7 +35683,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35757,7 +35757,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35824,7 +35824,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35888,7 +35888,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35963,7 +35963,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36023,7 +36023,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36079,7 +36079,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36143,7 +36143,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36215,7 +36215,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36281,7 +36281,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36412,7 +36412,7 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36473,7 +36473,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36539,7 +36539,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36608,7 +36608,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36674,7 +36674,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36749,7 +36749,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36834,7 +36834,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36892,7 +36892,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36949,7 +36949,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37011,7 +37011,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37072,7 +37072,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37139,7 +37139,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37193,7 +37193,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37265,7 +37265,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37325,7 +37325,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37395,7 +37395,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37450,7 +37450,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37502,7 +37502,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37563,7 +37563,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37628,7 +37628,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37696,7 +37696,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37760,7 +37760,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37840,7 +37840,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37914,7 +37914,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37987,7 +37987,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38069,7 +38069,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38138,7 +38138,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38208,7 +38208,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38281,7 +38281,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38340,7 +38340,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38401,7 +38401,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38470,7 +38470,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38533,7 +38533,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38593,7 +38593,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38660,7 +38660,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38715,7 +38715,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38779,7 +38779,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38842,7 +38842,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38932,7 +38932,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38989,7 +38989,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39046,7 +39046,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39107,7 +39107,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39156,7 +39156,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39214,7 +39214,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39270,7 +39270,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39332,7 +39332,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39383,7 +39383,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39449,7 +39449,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39498,7 +39498,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39542,7 +39542,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39598,7 +39598,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39654,7 +39654,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39703,7 +39703,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39765,7 +39765,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39822,7 +39822,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39876,7 +39876,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39928,7 +39928,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39978,7 +39978,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40040,7 +40040,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40096,7 +40096,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40162,7 +40162,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40228,7 +40228,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40304,7 +40304,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40380,7 +40380,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40425,7 +40425,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40572,7 +40572,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40648,7 +40648,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40717,7 +40717,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40799,7 +40799,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40856,7 +40856,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40927,7 +40927,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41019,7 +41019,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41104,7 +41104,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41149,7 +41149,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41215,7 +41215,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41269,7 +41269,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41325,7 +41325,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41395,7 +41395,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41453,7 +41453,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41552,7 +41552,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41614,7 +41614,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41658,7 +41658,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41732,7 +41732,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41805,7 +41805,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41877,7 +41877,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41926,7 +41926,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41990,7 +41990,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42053,7 +42053,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42128,7 +42128,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42205,7 +42205,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42260,7 +42260,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42314,7 +42314,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42368,7 +42368,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42424,7 +42424,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42478,7 +42478,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42540,7 +42540,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42589,7 +42589,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42639,7 +42639,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42721,7 +42721,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42804,7 +42804,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42897,7 +42897,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42964,7 +42964,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43015,7 +43015,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43062,7 +43062,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43122,7 +43122,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43183,7 +43183,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43224,7 +43224,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43265,7 +43265,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43314,7 +43314,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43359,7 +43359,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43404,7 +43404,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43450,7 +43450,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43492,7 +43492,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43534,7 +43534,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43621,7 +43621,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43678,7 +43678,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43735,7 +43735,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43792,7 +43792,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43844,7 +43844,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43907,7 +43907,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43956,7 +43956,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44007,7 +44007,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44063,7 +44063,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44115,7 +44115,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44177,7 +44177,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44236,7 +44236,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44299,7 +44299,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44352,7 +44352,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44409,7 +44409,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44476,7 +44476,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44539,7 +44539,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44601,7 +44601,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44661,7 +44661,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44720,7 +44720,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44782,7 +44782,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44845,7 +44845,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44920,7 +44920,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44993,7 +44993,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45063,7 +45063,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45115,7 +45115,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45163,7 +45163,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45213,7 +45213,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45270,7 +45270,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45333,7 +45333,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45397,7 +45397,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45456,7 +45456,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45522,7 +45522,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45572,7 +45572,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45626,7 +45626,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45679,7 +45679,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45748,7 +45748,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45805,7 +45805,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45859,7 +45859,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45904,7 +45904,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45954,7 +45954,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46039,7 +46039,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46084,7 +46084,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46137,7 +46137,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46193,7 +46193,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46275,7 +46275,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46328,7 +46328,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46383,7 +46383,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46481,7 +46481,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46690,7 +46690,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46760,7 +46760,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46847,7 +46847,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46941,7 +46941,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46987,7 +46987,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47032,7 +47032,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47085,7 +47085,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47142,7 +47142,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47200,7 +47200,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47254,7 +47254,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47299,7 +47299,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47351,7 +47351,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47411,7 +47411,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47474,7 +47474,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47540,7 +47540,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47596,7 +47596,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47658,7 +47658,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47709,7 +47709,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47764,7 +47764,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47823,7 +47823,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47877,7 +47877,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47936,7 +47936,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47986,7 +47986,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48037,7 +48037,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48092,7 +48092,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48141,7 +48141,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48199,7 +48199,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48263,7 +48263,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48313,7 +48313,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48365,7 +48365,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48413,7 +48413,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48463,7 +48463,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48519,7 +48519,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48574,7 +48574,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48634,7 +48634,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48711,7 +48711,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48763,7 +48763,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48821,7 +48821,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48883,7 +48883,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48937,7 +48937,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49003,7 +49003,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49066,7 +49066,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49126,7 +49126,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49183,7 +49183,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49241,7 +49241,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49303,7 +49303,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49362,7 +49362,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49413,7 +49413,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49472,7 +49472,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49533,7 +49533,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49599,7 +49599,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49645,7 +49645,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49698,7 +49698,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49746,7 +49746,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49788,7 +49788,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49839,7 +49839,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49894,7 +49894,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49951,7 +49951,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50004,7 +50004,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50066,7 +50066,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50118,7 +50118,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50177,7 +50177,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50232,7 +50232,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50287,7 +50287,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50345,7 +50345,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50392,7 +50392,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50446,7 +50446,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50498,7 +50498,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50549,7 +50549,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50607,7 +50607,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50660,7 +50660,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50722,7 +50722,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50783,7 +50783,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50849,7 +50849,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50919,7 +50919,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50982,7 +50982,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51032,7 +51032,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51096,7 +51096,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51173,7 +51173,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51235,7 +51235,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51281,7 +51281,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51343,7 +51343,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51397,7 +51397,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51449,7 +51449,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51505,7 +51505,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51561,7 +51561,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51614,7 +51614,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51675,7 +51675,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51785,7 +51785,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51844,7 +51844,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51904,7 +51904,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51948,7 +51948,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51994,7 +51994,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52037,7 +52037,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52087,7 +52087,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52137,7 +52137,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52187,7 +52187,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52239,7 +52239,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52288,7 +52288,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52346,7 +52346,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52402,7 +52402,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52459,7 +52459,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52517,7 +52517,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52563,7 +52563,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52615,7 +52615,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52671,7 +52671,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52728,7 +52728,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52790,7 +52790,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52847,7 +52847,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52913,7 +52913,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52979,7 +52979,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53047,7 +53047,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53116,7 +53116,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53171,7 +53171,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53220,7 +53220,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53276,7 +53276,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53338,7 +53338,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53378,7 +53378,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53433,7 +53433,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53489,7 +53489,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53539,7 +53539,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ 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 454ec26349..ed38616cd1 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 @@ -250,7 +250,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { @@ -312,7 +312,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -380,7 +380,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { @@ -448,7 +448,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { @@ -507,7 +507,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { @@ -578,7 +578,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -656,7 +656,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { @@ -732,7 +732,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -819,7 +819,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { @@ -887,7 +887,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -964,7 +964,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { @@ -1042,7 +1042,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -1121,7 +1121,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1211,7 +1211,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { @@ -1314,7 +1314,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1391,7 +1391,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { @@ -1463,7 +1463,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" }, { @@ -1539,7 +1539,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1623,7 +1623,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { @@ -1695,7 +1695,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1760,7 +1760,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1831,7 +1831,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { @@ -1922,7 +1922,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { @@ -2001,7 +2001,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2066,7 +2066,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { @@ -2129,7 +2129,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { @@ -2209,7 +2209,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { @@ -2290,7 +2290,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { @@ -2365,7 +2365,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2458,7 +2458,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { @@ -2538,7 +2538,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { @@ -2619,7 +2619,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2701,7 +2701,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2772,7 +2772,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2846,7 +2846,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { @@ -2921,7 +2921,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { @@ -2997,7 +2997,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3084,7 +3084,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -3174,7 +3174,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -3261,7 +3261,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3348,7 +3348,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3425,7 +3425,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3514,7 +3514,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { @@ -3600,7 +3600,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3675,7 +3675,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3746,7 +3746,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { @@ -3827,7 +3827,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { @@ -3922,7 +3922,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -4008,7 +4008,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -4070,7 +4070,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4144,7 +4144,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { @@ -4206,7 +4206,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4277,7 +4277,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { @@ -4348,7 +4348,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4480,7 +4480,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { @@ -4558,7 +4558,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -4665,7 +4665,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4730,7 +4730,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4817,7 +4817,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { @@ -4879,7 +4879,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4954,7 +4954,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { @@ -5040,7 +5040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -5114,7 +5114,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5207,7 +5207,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { @@ -5287,7 +5287,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5377,7 +5377,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { @@ -5467,7 +5467,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5552,7 +5552,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { @@ -5637,7 +5637,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { @@ -5725,7 +5725,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { @@ -5803,7 +5803,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5896,7 +5896,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { @@ -5979,7 +5979,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6068,7 +6068,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { @@ -6148,7 +6148,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6231,7 +6231,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6323,7 +6323,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -6412,7 +6412,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6496,7 +6496,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6570,7 +6570,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6642,7 +6642,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6728,7 +6728,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { @@ -6814,7 +6814,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6900,7 +6900,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { @@ -6986,7 +6986,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -7073,7 +7073,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7150,7 +7150,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7239,7 +7239,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -7326,7 +7326,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7424,7 +7424,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -7521,7 +7521,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { @@ -7615,7 +7615,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { @@ -7692,7 +7692,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7781,7 +7781,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7858,7 +7858,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7947,7 +7947,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8031,7 +8031,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8124,7 +8124,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8201,7 +8201,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8298,7 +8298,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { @@ -8395,7 +8395,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { @@ -8483,7 +8483,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { @@ -8579,7 +8579,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { @@ -8680,7 +8680,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8775,7 +8775,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -8865,7 +8865,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8972,7 +8972,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { @@ -9051,7 +9051,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9129,7 +9129,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9220,7 +9220,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { @@ -9317,7 +9317,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9411,7 +9411,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { @@ -9591,7 +9591,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { @@ -9678,7 +9678,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9774,7 +9774,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { @@ -9888,7 +9888,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9981,7 +9981,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -10075,7 +10075,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10183,7 +10183,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { @@ -10267,7 +10267,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10349,7 +10349,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10439,7 +10439,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { @@ -10520,7 +10520,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10614,7 +10614,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { @@ -10685,7 +10685,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { @@ -10783,7 +10783,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10870,7 +10870,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { @@ -10960,7 +10960,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11040,7 +11040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11115,7 +11115,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11204,7 +11204,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -11293,7 +11293,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -11387,7 +11387,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11480,7 +11480,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { @@ -11592,7 +11592,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11700,7 +11700,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -11806,7 +11806,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11926,7 +11926,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { @@ -12019,7 +12019,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12120,7 +12120,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12225,7 +12225,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { @@ -12300,7 +12300,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12384,7 +12384,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { @@ -12482,7 +12482,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12572,7 +12572,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12657,7 +12657,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12753,7 +12753,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -12827,7 +12827,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12921,7 +12921,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13068,7 +13068,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13162,7 +13162,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { @@ -13248,7 +13248,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { @@ -13370,7 +13370,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13435,7 +13435,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13524,7 +13524,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13607,7 +13607,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { @@ -13678,7 +13678,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13762,7 +13762,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { @@ -13835,7 +13835,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13931,7 +13931,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { @@ -13996,7 +13996,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14079,7 +14079,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { @@ -14156,7 +14156,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -14228,7 +14228,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14320,7 +14320,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { @@ -14398,7 +14398,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14478,7 +14478,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { @@ -14549,7 +14549,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { @@ -14621,7 +14621,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14713,7 +14713,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { @@ -14790,7 +14790,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14873,7 +14873,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -14957,7 +14957,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15055,7 +15055,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -15156,7 +15156,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15227,7 +15227,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15462,7 +15462,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { @@ -15549,7 +15549,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -15631,7 +15631,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15733,7 +15733,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { @@ -15816,7 +15816,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15913,7 +15913,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { @@ -16041,7 +16041,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16166,7 +16166,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16228,7 +16228,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16308,7 +16308,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { @@ -16382,7 +16382,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16465,7 +16465,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { @@ -16562,7 +16562,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -16646,7 +16646,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16784,7 +16784,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16870,7 +16870,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16935,7 +16935,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17046,7 +17046,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17160,7 +17160,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17266,7 +17266,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17343,7 +17343,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17433,7 +17433,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { @@ -17521,7 +17521,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17632,7 +17632,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -17740,7 +17740,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -17815,7 +17815,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17894,7 +17894,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -17967,7 +17967,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -18040,7 +18040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { @@ -18117,7 +18117,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18205,7 +18205,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -18271,7 +18271,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18345,7 +18345,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18437,7 +18437,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { @@ -18530,7 +18530,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18634,7 +18634,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -18717,7 +18717,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { @@ -18800,7 +18800,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { @@ -18881,7 +18881,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18952,7 +18952,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19023,7 +19023,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { @@ -19082,7 +19082,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { @@ -19142,7 +19142,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19213,7 +19213,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { @@ -19272,7 +19272,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { @@ -19331,7 +19331,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { @@ -19393,7 +19393,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19455,7 +19455,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { @@ -19517,7 +19517,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { @@ -19640,7 +19640,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19728,7 +19728,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19812,7 +19812,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { @@ -19889,7 +19889,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { @@ -19964,7 +19964,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20056,7 +20056,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { @@ -20121,7 +20121,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20195,7 +20195,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { @@ -20269,7 +20269,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { @@ -20344,7 +20344,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20433,7 +20433,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { @@ -20513,7 +20513,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20609,7 +20609,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20686,7 +20686,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { @@ -20763,7 +20763,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { @@ -20859,7 +20859,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20949,7 +20949,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -21037,7 +21037,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21125,7 +21125,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { @@ -21202,7 +21202,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { @@ -21267,7 +21267,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21341,7 +21341,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { @@ -21417,7 +21417,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21503,7 +21503,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { @@ -21588,7 +21588,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -21671,7 +21671,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21765,7 +21765,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { @@ -21845,7 +21845,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21934,7 +21934,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -22024,7 +22024,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22133,7 +22133,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { @@ -22232,7 +22232,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -22332,7 +22332,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22399,7 +22399,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22478,7 +22478,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { @@ -22555,7 +22555,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22629,7 +22629,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { @@ -22706,7 +22706,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -22784,7 +22784,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22855,7 +22855,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22928,7 +22928,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22999,7 +22999,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23081,7 +23081,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23163,7 +23163,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23284,7 +23284,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23366,7 +23366,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23445,7 +23445,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23575,7 +23575,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23812,7 +23812,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23903,7 +23903,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24018,7 +24018,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24149,7 +24149,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24271,7 +24271,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24339,7 +24339,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { @@ -24405,7 +24405,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24483,7 +24483,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -24561,7 +24561,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -24638,7 +24638,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { @@ -24709,7 +24709,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24780,7 +24780,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24857,7 +24857,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { @@ -24943,7 +24943,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25035,7 +25035,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -25124,7 +25124,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25210,7 +25210,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25297,7 +25297,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25371,7 +25371,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25449,7 +25449,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { @@ -25529,7 +25529,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { @@ -25607,7 +25607,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25693,7 +25693,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { @@ -25764,7 +25764,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25839,7 +25839,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { @@ -25914,7 +25914,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" }, { @@ -25986,7 +25986,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26072,7 +26072,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -26160,7 +26160,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -26228,7 +26228,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26305,7 +26305,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { @@ -26373,7 +26373,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26447,7 +26447,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { @@ -26524,7 +26524,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { @@ -26604,7 +26604,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26693,7 +26693,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { @@ -26797,7 +26797,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26877,7 +26877,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26963,7 +26963,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { @@ -27049,7 +27049,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -27127,7 +27127,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27225,7 +27225,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { @@ -27313,7 +27313,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { @@ -27396,7 +27396,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -27480,7 +27480,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27566,7 +27566,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { @@ -27652,7 +27652,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { @@ -27738,7 +27738,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27818,7 +27818,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27905,7 +27905,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { @@ -27986,7 +27986,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { @@ -28082,7 +28082,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -28144,7 +28144,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28218,7 +28218,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { @@ -28277,7 +28277,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { @@ -28339,7 +28339,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28415,7 +28415,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { @@ -28489,7 +28489,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28578,7 +28578,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28655,7 +28655,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { @@ -28746,7 +28746,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -28816,7 +28816,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { @@ -28901,7 +28901,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { @@ -28981,7 +28981,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { @@ -29052,7 +29052,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { @@ -29121,7 +29121,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { @@ -29201,7 +29201,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { @@ -29276,7 +29276,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29351,7 +29351,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { @@ -29429,7 +29429,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { @@ -29505,7 +29505,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29595,7 +29595,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -29682,7 +29682,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29783,7 +29783,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { @@ -29878,7 +29878,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -29968,7 +29968,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30041,7 +30041,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { @@ -30127,7 +30127,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30237,7 +30237,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30323,7 +30323,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30391,7 +30391,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30476,7 +30476,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30556,7 +30556,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30633,7 +30633,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -30710,7 +30710,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -30787,7 +30787,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { @@ -30862,7 +30862,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30951,7 +30951,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -31104,7 +31104,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31169,7 +31169,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31252,7 +31252,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31328,7 +31328,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31396,7 +31396,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31458,7 +31458,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { @@ -31532,7 +31532,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { @@ -31603,7 +31603,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31677,7 +31677,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { @@ -31748,7 +31748,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" }, { @@ -31820,7 +31820,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31906,7 +31906,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -31986,7 +31986,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32071,7 +32071,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { @@ -32151,7 +32151,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -32219,7 +32219,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32296,7 +32296,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { @@ -32377,7 +32377,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32461,7 +32461,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { @@ -32542,7 +32542,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32626,7 +32626,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { @@ -32708,7 +32708,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32804,7 +32804,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -32897,7 +32897,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32996,7 +32996,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { @@ -33089,7 +33089,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -33166,7 +33166,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -33246,7 +33246,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { @@ -33337,7 +33337,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -33385,7 +33385,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" }, { @@ -33458,7 +33458,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { @@ -33530,7 +33530,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -33604,7 +33604,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { 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 a9d2ecee38..203a3080cf 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 @@ -30144,7 +30144,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30187,7 +30187,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30231,7 +30231,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30275,7 +30275,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30317,7 +30317,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30364,7 +30364,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30419,7 +30419,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30473,7 +30473,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30534,7 +30534,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30584,7 +30584,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30636,7 +30636,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30694,7 +30694,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30749,7 +30749,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30811,7 +30811,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30884,7 +30884,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30940,7 +30940,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30994,7 +30994,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31047,7 +31047,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31108,7 +31108,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31162,7 +31162,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31207,7 +31207,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31253,7 +31253,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31316,7 +31316,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31364,7 +31364,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31407,7 +31407,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31461,7 +31461,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31519,7 +31519,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31571,7 +31571,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31631,7 +31631,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31695,7 +31695,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31751,7 +31751,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31807,7 +31807,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31855,7 +31855,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31908,7 +31908,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31967,7 +31967,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32023,7 +32023,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32088,7 +32088,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32159,7 +32159,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32223,7 +32223,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32282,7 +32282,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32338,7 +32338,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32402,7 +32402,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32465,7 +32465,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32513,7 +32513,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32561,7 +32561,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32621,7 +32621,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32683,7 +32683,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32746,7 +32746,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32792,7 +32792,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32842,7 +32842,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32888,7 +32888,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32936,7 +32936,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32985,7 +32985,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33076,7 +33076,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33135,7 +33135,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33210,7 +33210,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33254,7 +33254,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33313,7 +33313,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33359,7 +33359,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33410,7 +33410,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33473,7 +33473,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33524,7 +33524,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33588,7 +33588,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33643,7 +33643,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33827,7 +33827,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33891,7 +33891,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33945,7 +33945,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34009,7 +34009,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34118,7 +34118,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34181,7 +34181,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34235,7 +34235,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34297,7 +34297,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34357,7 +34357,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34411,7 +34411,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34477,7 +34477,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34543,7 +34543,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34602,7 +34602,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34654,7 +34654,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34704,7 +34704,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34766,7 +34766,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34826,7 +34826,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34888,7 +34888,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34954,7 +34954,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35015,7 +35015,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35083,7 +35083,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35147,7 +35147,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35208,7 +35208,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35261,7 +35261,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35327,7 +35327,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35395,7 +35395,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35452,7 +35452,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35514,7 +35514,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35567,7 +35567,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35629,7 +35629,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35684,7 +35684,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35749,7 +35749,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35803,7 +35803,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35870,7 +35870,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35941,7 +35941,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36006,7 +36006,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36076,7 +36076,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36150,7 +36150,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36217,7 +36217,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36281,7 +36281,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36356,7 +36356,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36415,7 +36415,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36469,7 +36469,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36532,7 +36532,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36602,7 +36602,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36667,7 +36667,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36797,7 +36797,7 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36858,7 +36858,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36924,7 +36924,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36993,7 +36993,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37059,7 +37059,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37134,7 +37134,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37219,7 +37219,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37277,7 +37277,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37334,7 +37334,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37396,7 +37396,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37456,7 +37456,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37521,7 +37521,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37574,7 +37574,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37646,7 +37646,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37706,7 +37706,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37776,7 +37776,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37831,7 +37831,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37883,7 +37883,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37944,7 +37944,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38009,7 +38009,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38077,7 +38077,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38141,7 +38141,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38221,7 +38221,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38295,7 +38295,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38368,7 +38368,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38450,7 +38450,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38519,7 +38519,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38589,7 +38589,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38662,7 +38662,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38721,7 +38721,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38782,7 +38782,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38851,7 +38851,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38914,7 +38914,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38974,7 +38974,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39041,7 +39041,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39096,7 +39096,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39160,7 +39160,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39223,7 +39223,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39313,7 +39313,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39370,7 +39370,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39427,7 +39427,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39488,7 +39488,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39537,7 +39537,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39595,7 +39595,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39651,7 +39651,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39713,7 +39713,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39764,7 +39764,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39830,7 +39830,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39879,7 +39879,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39923,7 +39923,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39979,7 +39979,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40035,7 +40035,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40084,7 +40084,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40146,7 +40146,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40203,7 +40203,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40257,7 +40257,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40309,7 +40309,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40359,7 +40359,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40421,7 +40421,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40477,7 +40477,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40543,7 +40543,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40609,7 +40609,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40685,7 +40685,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40761,7 +40761,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40806,7 +40806,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40953,7 +40953,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41029,7 +41029,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41098,7 +41098,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41180,7 +41180,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41237,7 +41237,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41308,7 +41308,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41400,7 +41400,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41485,7 +41485,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41530,7 +41530,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41596,7 +41596,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41650,7 +41650,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41706,7 +41706,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41776,7 +41776,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41834,7 +41834,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41933,7 +41933,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41995,7 +41995,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42039,7 +42039,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42113,7 +42113,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42186,7 +42186,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42258,7 +42258,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42307,7 +42307,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42371,7 +42371,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42434,7 +42434,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42509,7 +42509,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42586,7 +42586,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42641,7 +42641,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42695,7 +42695,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42749,7 +42749,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42805,7 +42805,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42859,7 +42859,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42921,7 +42921,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42970,7 +42970,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43020,7 +43020,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43102,7 +43102,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43185,7 +43185,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43278,7 +43278,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43345,7 +43345,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43396,7 +43396,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43443,7 +43443,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43503,7 +43503,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43564,7 +43564,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43605,7 +43605,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43646,7 +43646,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43695,7 +43695,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43740,7 +43740,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43785,7 +43785,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43831,7 +43831,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43873,7 +43873,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43915,7 +43915,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44002,7 +44002,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44059,7 +44059,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44116,7 +44116,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44173,7 +44173,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44225,7 +44225,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44288,7 +44288,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44337,7 +44337,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44388,7 +44388,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44444,7 +44444,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44496,7 +44496,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44558,7 +44558,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44617,7 +44617,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44680,7 +44680,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44733,7 +44733,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44790,7 +44790,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44857,7 +44857,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44920,7 +44920,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44982,7 +44982,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45042,7 +45042,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45101,7 +45101,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45163,7 +45163,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45226,7 +45226,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45301,7 +45301,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45374,7 +45374,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45444,7 +45444,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45496,7 +45496,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45544,7 +45544,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45594,7 +45594,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45651,7 +45651,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45714,7 +45714,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45778,7 +45778,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45837,7 +45837,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45903,7 +45903,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45953,7 +45953,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46007,7 +46007,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46060,7 +46060,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46129,7 +46129,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46186,7 +46186,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46240,7 +46240,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46285,7 +46285,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46335,7 +46335,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46420,7 +46420,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46465,7 +46465,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46518,7 +46518,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46574,7 +46574,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46656,7 +46656,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46709,7 +46709,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46764,7 +46764,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46862,7 +46862,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47071,7 +47071,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47141,7 +47141,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47228,7 +47228,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47322,7 +47322,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47368,7 +47368,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47413,7 +47413,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47466,7 +47466,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47523,7 +47523,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47581,7 +47581,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47635,7 +47635,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47680,7 +47680,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47732,7 +47732,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47792,7 +47792,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47855,7 +47855,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47921,7 +47921,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47977,7 +47977,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48039,7 +48039,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48090,7 +48090,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48145,7 +48145,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48204,7 +48204,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48258,7 +48258,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48317,7 +48317,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48367,7 +48367,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48418,7 +48418,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48473,7 +48473,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48522,7 +48522,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48580,7 +48580,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48644,7 +48644,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48694,7 +48694,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48746,7 +48746,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48794,7 +48794,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48844,7 +48844,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48900,7 +48900,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48955,7 +48955,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49015,7 +49015,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49092,7 +49092,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49144,7 +49144,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49202,7 +49202,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49264,7 +49264,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49318,7 +49318,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49384,7 +49384,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49447,7 +49447,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49507,7 +49507,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49564,7 +49564,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49622,7 +49622,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49684,7 +49684,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49743,7 +49743,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49794,7 +49794,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49853,7 +49853,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49914,7 +49914,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49980,7 +49980,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50026,7 +50026,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50079,7 +50079,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50127,7 +50127,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50169,7 +50169,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50220,7 +50220,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50275,7 +50275,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50332,7 +50332,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50385,7 +50385,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50447,7 +50447,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50499,7 +50499,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50558,7 +50558,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50613,7 +50613,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50668,7 +50668,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50726,7 +50726,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50773,7 +50773,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50827,7 +50827,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50879,7 +50879,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50930,7 +50930,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50988,7 +50988,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51041,7 +51041,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51103,7 +51103,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51164,7 +51164,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51230,7 +51230,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51300,7 +51300,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51363,7 +51363,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51413,7 +51413,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51477,7 +51477,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51554,7 +51554,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51616,7 +51616,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51662,7 +51662,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51724,7 +51724,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51778,7 +51778,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51830,7 +51830,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51886,7 +51886,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51942,7 +51942,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51995,7 +51995,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52056,7 +52056,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52166,7 +52166,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52225,7 +52225,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52285,7 +52285,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52329,7 +52329,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52375,7 +52375,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52418,7 +52418,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52468,7 +52468,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52518,7 +52518,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52568,7 +52568,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52620,7 +52620,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52669,7 +52669,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52727,7 +52727,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52783,7 +52783,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52840,7 +52840,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52898,7 +52898,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52944,7 +52944,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52996,7 +52996,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53052,7 +53052,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53109,7 +53109,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53171,7 +53171,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53228,7 +53228,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53294,7 +53294,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53360,7 +53360,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53428,7 +53428,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53497,7 +53497,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53552,7 +53552,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53601,7 +53601,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53657,7 +53657,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53719,7 +53719,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53759,7 +53759,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53814,7 +53814,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53870,7 +53870,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53920,7 +53920,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ 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 5164622895..4fb80745d6 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 @@ -250,7 +250,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { @@ -312,7 +312,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -380,7 +380,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { @@ -448,7 +448,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { @@ -507,7 +507,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { @@ -578,7 +578,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -656,7 +656,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { @@ -732,7 +732,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -819,7 +819,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { @@ -887,7 +887,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -964,7 +964,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { @@ -1042,7 +1042,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -1121,7 +1121,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1211,7 +1211,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { @@ -1314,7 +1314,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1391,7 +1391,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { @@ -1463,7 +1463,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" }, { @@ -1539,7 +1539,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1623,7 +1623,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { @@ -1695,7 +1695,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1760,7 +1760,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -1831,7 +1831,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { @@ -1922,7 +1922,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { @@ -2001,7 +2001,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2066,7 +2066,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { @@ -2129,7 +2129,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { @@ -2209,7 +2209,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { @@ -2290,7 +2290,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { @@ -2365,7 +2365,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2458,7 +2458,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { @@ -2538,7 +2538,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { @@ -2619,7 +2619,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2701,7 +2701,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2772,7 +2772,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -2846,7 +2846,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { @@ -2921,7 +2921,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { @@ -2997,7 +2997,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3084,7 +3084,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -3174,7 +3174,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { @@ -3261,7 +3261,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3348,7 +3348,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3425,7 +3425,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3514,7 +3514,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { @@ -3600,7 +3600,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3675,7 +3675,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -3746,7 +3746,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { @@ -3827,7 +3827,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { @@ -3922,7 +3922,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -4008,7 +4008,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -4070,7 +4070,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4144,7 +4144,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { @@ -4206,7 +4206,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4277,7 +4277,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { @@ -4348,7 +4348,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4480,7 +4480,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { @@ -4558,7 +4558,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -4665,7 +4665,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4730,7 +4730,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4817,7 +4817,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { @@ -4879,7 +4879,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -4954,7 +4954,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { @@ -5040,7 +5040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -5114,7 +5114,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5207,7 +5207,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { @@ -5287,7 +5287,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5377,7 +5377,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { @@ -5467,7 +5467,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5552,7 +5552,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { @@ -5637,7 +5637,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { @@ -5725,7 +5725,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { @@ -5803,7 +5803,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -5896,7 +5896,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { @@ -5979,7 +5979,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6068,7 +6068,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { @@ -6148,7 +6148,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6231,7 +6231,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6323,7 +6323,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -6412,7 +6412,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -6496,7 +6496,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6570,7 +6570,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6642,7 +6642,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6728,7 +6728,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { @@ -6814,7 +6814,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -6900,7 +6900,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { @@ -6986,7 +6986,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -7073,7 +7073,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7150,7 +7150,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7239,7 +7239,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -7326,7 +7326,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7424,7 +7424,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -7521,7 +7521,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { @@ -7615,7 +7615,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { @@ -7692,7 +7692,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7781,7 +7781,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7858,7 +7858,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -7947,7 +7947,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8031,7 +8031,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8124,7 +8124,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8201,7 +8201,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8298,7 +8298,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { @@ -8395,7 +8395,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { @@ -8483,7 +8483,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { @@ -8579,7 +8579,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { @@ -8680,7 +8680,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8775,7 +8775,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -8865,7 +8865,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -8972,7 +8972,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { @@ -9051,7 +9051,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9129,7 +9129,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9220,7 +9220,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { @@ -9317,7 +9317,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9411,7 +9411,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { @@ -9591,7 +9591,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { @@ -9678,7 +9678,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9774,7 +9774,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { @@ -9888,7 +9888,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -9981,7 +9981,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -10075,7 +10075,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10183,7 +10183,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { @@ -10267,7 +10267,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10349,7 +10349,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10439,7 +10439,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { @@ -10520,7 +10520,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10614,7 +10614,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { @@ -10685,7 +10685,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { @@ -10783,7 +10783,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -10870,7 +10870,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { @@ -10960,7 +10960,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11040,7 +11040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11115,7 +11115,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11204,7 +11204,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -11293,7 +11293,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { @@ -11387,7 +11387,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11480,7 +11480,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { @@ -11592,7 +11592,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11700,7 +11700,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -11806,7 +11806,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -11926,7 +11926,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { @@ -12019,7 +12019,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12120,7 +12120,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12225,7 +12225,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { @@ -12300,7 +12300,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12384,7 +12384,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { @@ -12482,7 +12482,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12572,7 +12572,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -12657,7 +12657,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12753,7 +12753,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { @@ -12827,7 +12827,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -12921,7 +12921,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13068,7 +13068,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13162,7 +13162,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { @@ -13248,7 +13248,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { @@ -13370,7 +13370,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13435,7 +13435,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13524,7 +13524,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13607,7 +13607,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { @@ -13678,7 +13678,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13762,7 +13762,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { @@ -13835,7 +13835,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -13931,7 +13931,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { @@ -13996,7 +13996,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14079,7 +14079,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { @@ -14156,7 +14156,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -14228,7 +14228,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14320,7 +14320,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { @@ -14398,7 +14398,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14478,7 +14478,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { @@ -14549,7 +14549,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { @@ -14621,7 +14621,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14713,7 +14713,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { @@ -14790,7 +14790,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -14873,7 +14873,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -14957,7 +14957,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15055,7 +15055,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -15156,7 +15156,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15227,7 +15227,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15462,7 +15462,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { @@ -15549,7 +15549,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -15631,7 +15631,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15733,7 +15733,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { @@ -15816,7 +15816,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -15913,7 +15913,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { @@ -16041,7 +16041,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16166,7 +16166,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16228,7 +16228,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16308,7 +16308,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { @@ -16382,7 +16382,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16465,7 +16465,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { @@ -16562,7 +16562,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -16646,7 +16646,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16784,7 +16784,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16870,7 +16870,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -16935,7 +16935,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17046,7 +17046,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17160,7 +17160,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17266,7 +17266,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17343,7 +17343,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17433,7 +17433,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { @@ -17521,7 +17521,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17632,7 +17632,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -17740,7 +17740,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { @@ -17815,7 +17815,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -17894,7 +17894,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -17967,7 +17967,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { @@ -18040,7 +18040,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { @@ -18117,7 +18117,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18205,7 +18205,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -18271,7 +18271,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18345,7 +18345,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18437,7 +18437,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { @@ -18530,7 +18530,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18634,7 +18634,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { @@ -18717,7 +18717,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { @@ -18800,7 +18800,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { @@ -18881,7 +18881,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -18952,7 +18952,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19023,7 +19023,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { @@ -19082,7 +19082,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { @@ -19142,7 +19142,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19213,7 +19213,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { @@ -19272,7 +19272,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { @@ -19331,7 +19331,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { @@ -19393,7 +19393,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19455,7 +19455,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { @@ -19517,7 +19517,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { @@ -19640,7 +19640,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19728,7 +19728,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -19812,7 +19812,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { @@ -19889,7 +19889,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { @@ -19964,7 +19964,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20056,7 +20056,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { @@ -20121,7 +20121,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20195,7 +20195,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { @@ -20269,7 +20269,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { @@ -20344,7 +20344,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20433,7 +20433,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { @@ -20513,7 +20513,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20609,7 +20609,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20686,7 +20686,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { @@ -20763,7 +20763,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { @@ -20859,7 +20859,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -20949,7 +20949,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -21037,7 +21037,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21125,7 +21125,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { @@ -21202,7 +21202,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { @@ -21267,7 +21267,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21341,7 +21341,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { @@ -21417,7 +21417,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21503,7 +21503,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { @@ -21588,7 +21588,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -21671,7 +21671,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21765,7 +21765,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { @@ -21845,7 +21845,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -21934,7 +21934,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -22024,7 +22024,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22133,7 +22133,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { @@ -22232,7 +22232,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -22332,7 +22332,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22399,7 +22399,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22478,7 +22478,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { @@ -22555,7 +22555,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22629,7 +22629,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { @@ -22706,7 +22706,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -22784,7 +22784,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22855,7 +22855,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22928,7 +22928,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -22999,7 +22999,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23081,7 +23081,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23163,7 +23163,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23284,7 +23284,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23366,7 +23366,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23445,7 +23445,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23575,7 +23575,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23812,7 +23812,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -23903,7 +23903,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24018,7 +24018,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24149,7 +24149,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24271,7 +24271,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24339,7 +24339,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { @@ -24405,7 +24405,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24483,7 +24483,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -24561,7 +24561,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { @@ -24638,7 +24638,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { @@ -24709,7 +24709,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24780,7 +24780,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -24857,7 +24857,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { @@ -24943,7 +24943,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25035,7 +25035,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { @@ -25124,7 +25124,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25210,7 +25210,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25297,7 +25297,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25371,7 +25371,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25449,7 +25449,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { @@ -25529,7 +25529,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { @@ -25607,7 +25607,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25693,7 +25693,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { @@ -25764,7 +25764,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -25839,7 +25839,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { @@ -25914,7 +25914,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" }, { @@ -25986,7 +25986,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26072,7 +26072,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -26160,7 +26160,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -26228,7 +26228,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26305,7 +26305,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { @@ -26373,7 +26373,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26447,7 +26447,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { @@ -26524,7 +26524,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { @@ -26604,7 +26604,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26693,7 +26693,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { @@ -26797,7 +26797,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26877,7 +26877,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -26963,7 +26963,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { @@ -27049,7 +27049,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -27127,7 +27127,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27225,7 +27225,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { @@ -27313,7 +27313,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { @@ -27396,7 +27396,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -27480,7 +27480,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27566,7 +27566,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { @@ -27652,7 +27652,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { @@ -27738,7 +27738,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27818,7 +27818,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -27905,7 +27905,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { @@ -27986,7 +27986,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { @@ -28082,7 +28082,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -28144,7 +28144,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28218,7 +28218,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { @@ -28277,7 +28277,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { @@ -28339,7 +28339,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28415,7 +28415,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { @@ -28489,7 +28489,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28578,7 +28578,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28655,7 +28655,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { @@ -28746,7 +28746,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -28817,7 +28817,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -28894,7 +28894,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\" \\\n -d '{ }'" }, { @@ -28974,7 +28974,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\"" }, { @@ -29055,7 +29055,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29141,7 +29141,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\" \\\n -d '{ }'" }, { @@ -29211,7 +29211,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { @@ -29296,7 +29296,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { @@ -29376,7 +29376,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { @@ -29447,7 +29447,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { @@ -29516,7 +29516,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { @@ -29596,7 +29596,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { @@ -29671,7 +29671,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29746,7 +29746,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { @@ -29824,7 +29824,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { @@ -29900,7 +29900,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -29990,7 +29990,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { @@ -30077,7 +30077,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30178,7 +30178,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { @@ -30273,7 +30273,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -30363,7 +30363,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30436,7 +30436,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { @@ -30522,7 +30522,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30632,7 +30632,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30718,7 +30718,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30786,7 +30786,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30871,7 +30871,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -30951,7 +30951,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31028,7 +31028,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -31105,7 +31105,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { @@ -31182,7 +31182,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { @@ -31257,7 +31257,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31346,7 +31346,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { @@ -31499,7 +31499,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31564,7 +31564,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31647,7 +31647,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31723,7 +31723,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31814,7 +31814,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31882,7 +31882,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -31944,7 +31944,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { @@ -32018,7 +32018,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { @@ -32089,7 +32089,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32163,7 +32163,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { @@ -32234,7 +32234,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" }, { @@ -32306,7 +32306,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32392,7 +32392,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { @@ -32472,7 +32472,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32557,7 +32557,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { @@ -32637,7 +32637,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -32705,7 +32705,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32782,7 +32782,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { @@ -32863,7 +32863,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -32947,7 +32947,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { @@ -33028,7 +33028,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -33112,7 +33112,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { @@ -33194,7 +33194,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -33290,7 +33290,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { @@ -33383,7 +33383,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -33482,7 +33482,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { @@ -33575,7 +33575,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" }, { @@ -33652,7 +33652,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -33732,7 +33732,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { @@ -33823,7 +33823,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { @@ -33871,7 +33871,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" }, { @@ -33944,7 +33944,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { @@ -34016,7 +34016,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" }, { @@ -34090,7 +34090,7 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account Access Token)", + "label": "curl (Service Account - oauth2)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { 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 66d75337ba..eca2f843bb 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 @@ -30556,7 +30556,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30599,7 +30599,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30643,7 +30643,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30687,7 +30687,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30729,7 +30729,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30776,7 +30776,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30831,7 +30831,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30885,7 +30885,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30946,7 +30946,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30996,7 +30996,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31048,7 +31048,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31106,7 +31106,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31161,7 +31161,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31223,7 +31223,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31296,7 +31296,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31352,7 +31352,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31406,7 +31406,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31459,7 +31459,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31520,7 +31520,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31574,7 +31574,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31619,7 +31619,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31665,7 +31665,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31728,7 +31728,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31776,7 +31776,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31819,7 +31819,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31873,7 +31873,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31931,7 +31931,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31983,7 +31983,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32043,7 +32043,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32107,7 +32107,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32163,7 +32163,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32219,7 +32219,7 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32267,7 +32267,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32320,7 +32320,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32379,7 +32379,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32435,7 +32435,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32500,7 +32500,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32571,7 +32571,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32635,7 +32635,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32694,7 +32694,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32750,7 +32750,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32814,7 +32814,7 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32877,7 +32877,7 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32925,7 +32925,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32973,7 +32973,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33033,7 +33033,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33095,7 +33095,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33158,7 +33158,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33204,7 +33204,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33254,7 +33254,7 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33300,7 +33300,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33348,7 +33348,7 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33397,7 +33397,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33488,7 +33488,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33547,7 +33547,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33622,7 +33622,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33666,7 +33666,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33725,7 +33725,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33771,7 +33771,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33822,7 +33822,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33885,7 +33885,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33936,7 +33936,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34000,7 +34000,7 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34055,7 +34055,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34239,7 +34239,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34303,7 +34303,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34357,7 +34357,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34421,7 +34421,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34530,7 +34530,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34593,7 +34593,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34647,7 +34647,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34709,7 +34709,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34769,7 +34769,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34823,7 +34823,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34889,7 +34889,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34955,7 +34955,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35014,7 +35014,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35066,7 +35066,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35116,7 +35116,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35178,7 +35178,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35238,7 +35238,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35300,7 +35300,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35366,7 +35366,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35427,7 +35427,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35495,7 +35495,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35559,7 +35559,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35620,7 +35620,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35673,7 +35673,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35739,7 +35739,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35807,7 +35807,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35864,7 +35864,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35926,7 +35926,7 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35979,7 +35979,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36041,7 +36041,7 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36096,7 +36096,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36161,7 +36161,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36215,7 +36215,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36282,7 +36282,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36353,7 +36353,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36418,7 +36418,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36488,7 +36488,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36562,7 +36562,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36629,7 +36629,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36693,7 +36693,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36768,7 +36768,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36827,7 +36827,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36881,7 +36881,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36944,7 +36944,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37014,7 +37014,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37079,7 +37079,7 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37209,7 +37209,7 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37270,7 +37270,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37336,7 +37336,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37405,7 +37405,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37471,7 +37471,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37546,7 +37546,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37631,7 +37631,7 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37689,7 +37689,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37746,7 +37746,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37808,7 +37808,7 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37868,7 +37868,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37933,7 +37933,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37986,7 +37986,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38058,7 +38058,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38118,7 +38118,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38188,7 +38188,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38243,7 +38243,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38295,7 +38295,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38356,7 +38356,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38421,7 +38421,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38489,7 +38489,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38553,7 +38553,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38633,7 +38633,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38707,7 +38707,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38780,7 +38780,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38862,7 +38862,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38931,7 +38931,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39001,7 +39001,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39074,7 +39074,7 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39133,7 +39133,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39194,7 +39194,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39263,7 +39263,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39326,7 +39326,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39386,7 +39386,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39453,7 +39453,7 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39508,7 +39508,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39572,7 +39572,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39635,7 +39635,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39725,7 +39725,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39782,7 +39782,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39839,7 +39839,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39900,7 +39900,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39949,7 +39949,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40007,7 +40007,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40063,7 +40063,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40125,7 +40125,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40176,7 +40176,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40242,7 +40242,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40291,7 +40291,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40335,7 +40335,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40391,7 +40391,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40447,7 +40447,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40496,7 +40496,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40558,7 +40558,7 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40615,7 +40615,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40669,7 +40669,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40721,7 +40721,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40771,7 +40771,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40833,7 +40833,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40889,7 +40889,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40955,7 +40955,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41021,7 +41021,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41097,7 +41097,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41173,7 +41173,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41218,7 +41218,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41365,7 +41365,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41441,7 +41441,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41510,7 +41510,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41592,7 +41592,7 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41649,7 +41649,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41720,7 +41720,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41812,7 +41812,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41897,7 +41897,7 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41942,7 +41942,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42008,7 +42008,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42062,7 +42062,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42118,7 +42118,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42188,7 +42188,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42246,7 +42246,7 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42345,7 +42345,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42407,7 +42407,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42451,7 +42451,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42525,7 +42525,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42598,7 +42598,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42670,7 +42670,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42719,7 +42719,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42783,7 +42783,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42846,7 +42846,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42921,7 +42921,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42998,7 +42998,7 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43053,7 +43053,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43107,7 +43107,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43161,7 +43161,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43217,7 +43217,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43271,7 +43271,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43333,7 +43333,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43382,7 +43382,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43432,7 +43432,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43514,7 +43514,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43597,7 +43597,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43690,7 +43690,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43757,7 +43757,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43808,7 +43808,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43855,7 +43855,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43915,7 +43915,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43976,7 +43976,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44017,7 +44017,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44058,7 +44058,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44107,7 +44107,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44152,7 +44152,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44197,7 +44197,7 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44243,7 +44243,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44285,7 +44285,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44327,7 +44327,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44414,7 +44414,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44471,7 +44471,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44528,7 +44528,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44585,7 +44585,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44637,7 +44637,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44700,7 +44700,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44749,7 +44749,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44800,7 +44800,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44856,7 +44856,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44908,7 +44908,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44970,7 +44970,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45029,7 +45029,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45092,7 +45092,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45145,7 +45145,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45202,7 +45202,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45269,7 +45269,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45332,7 +45332,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45394,7 +45394,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45454,7 +45454,7 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45513,7 +45513,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45575,7 +45575,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45638,7 +45638,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45713,7 +45713,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45786,7 +45786,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45856,7 +45856,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45908,7 +45908,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45956,7 +45956,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46006,7 +46006,7 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46063,7 +46063,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46126,7 +46126,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46190,7 +46190,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46249,7 +46249,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46315,7 +46315,7 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46365,7 +46365,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46419,7 +46419,7 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46472,7 +46472,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46541,7 +46541,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46598,7 +46598,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46652,7 +46652,7 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46697,7 +46697,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46747,7 +46747,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46832,7 +46832,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46877,7 +46877,7 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46930,7 +46930,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46986,7 +46986,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47068,7 +47068,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47121,7 +47121,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47176,7 +47176,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47274,7 +47274,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47483,7 +47483,7 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47553,7 +47553,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47640,7 +47640,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47734,7 +47734,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47780,7 +47780,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47825,7 +47825,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47878,7 +47878,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47935,7 +47935,7 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47993,7 +47993,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48047,7 +48047,7 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48092,7 +48092,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48144,7 +48144,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48204,7 +48204,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48267,7 +48267,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48333,7 +48333,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48389,7 +48389,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48451,7 +48451,7 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48502,7 +48502,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48557,7 +48557,7 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48616,7 +48616,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48670,7 +48670,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48729,7 +48729,7 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48779,7 +48779,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48830,7 +48830,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48885,7 +48885,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48934,7 +48934,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48992,7 +48992,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49056,7 +49056,7 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49106,7 +49106,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49158,7 +49158,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49206,7 +49206,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49256,7 +49256,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49312,7 +49312,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49367,7 +49367,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49427,7 +49427,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49504,7 +49504,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49556,7 +49556,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49614,7 +49614,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49676,7 +49676,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49730,7 +49730,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49796,7 +49796,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49859,7 +49859,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49919,7 +49919,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49976,7 +49976,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50034,7 +50034,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50096,7 +50096,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50155,7 +50155,7 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50206,7 +50206,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50265,7 +50265,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50326,7 +50326,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50392,7 +50392,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50438,7 +50438,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50491,7 +50491,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50539,7 +50539,7 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50581,7 +50581,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50632,7 +50632,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50687,7 +50687,7 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50744,7 +50744,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50797,7 +50797,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50859,7 +50859,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50908,7 +50908,7 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50960,7 +50960,7 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51019,7 +51019,7 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51075,7 +51075,7 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51134,7 +51134,7 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51186,7 +51186,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51245,7 +51245,7 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51300,7 +51300,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51355,7 +51355,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51413,7 +51413,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51460,7 +51460,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51514,7 +51514,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51566,7 +51566,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51617,7 +51617,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51675,7 +51675,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51728,7 +51728,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51790,7 +51790,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51851,7 +51851,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51917,7 +51917,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51987,7 +51987,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52050,7 +52050,7 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52100,7 +52100,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52164,7 +52164,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52241,7 +52241,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52303,7 +52303,7 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52349,7 +52349,7 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52411,7 +52411,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52465,7 +52465,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52517,7 +52517,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52573,7 +52573,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52629,7 +52629,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52682,7 +52682,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52743,7 +52743,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52853,7 +52853,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52912,7 +52912,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52972,7 +52972,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53033,7 +53033,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53077,7 +53077,7 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53123,7 +53123,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53166,7 +53166,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53216,7 +53216,7 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53266,7 +53266,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53316,7 +53316,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53368,7 +53368,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53417,7 +53417,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53475,7 +53475,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53531,7 +53531,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53588,7 +53588,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53646,7 +53646,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53692,7 +53692,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53744,7 +53744,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53800,7 +53800,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53857,7 +53857,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53919,7 +53919,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53976,7 +53976,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54042,7 +54042,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54108,7 +54108,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54176,7 +54176,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54245,7 +54245,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54300,7 +54300,7 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54349,7 +54349,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54405,7 +54405,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54467,7 +54467,7 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54507,7 +54507,7 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54562,7 +54562,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54618,7 +54618,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54668,7 +54668,7 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account Access Token) + - label: curl (Service Account - oauth2) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ From 073f8ebbb39e18420c91cff79064c31d9b2ba517 Mon Sep 17 00:00:00 2001 From: andreaangiolillo Date: Wed, 4 Jun 2025 17:01:54 +0200 Subject: [PATCH 5/6] Addressed Stephen's feedback 1) Use the name "Service Accounts" for curl examples 2) Include the AtlasCLI example first in the list --- .../internal/openapi/filter/code_sample.go | 4 +- .../openapi/filter/code_sample_test.go | 6 +- .../data/split/dev/openapi-v2-2023-01-01.json | 4044 +++++++------- .../data/split/dev/openapi-v2-2023-01-01.yaml | 2716 +++++----- .../data/split/dev/openapi-v2-2023-02-01.json | 4188 +++++++------- .../data/split/dev/openapi-v2-2023-02-01.yaml | 2816 +++++----- .../data/split/dev/openapi-v2-2023-10-01.json | 4356 +++++++-------- .../data/split/dev/openapi-v2-2023-10-01.yaml | 2928 +++++----- .../data/split/dev/openapi-v2-2023-11-15.json | 4512 ++++++++-------- .../data/split/dev/openapi-v2-2023-11-15.yaml | 3032 +++++------ .../data/split/dev/openapi-v2-2024-05-30.json | 4728 ++++++++-------- .../data/split/dev/openapi-v2-2024-05-30.yaml | 3180 +++++------ .../data/split/dev/openapi-v2-2024-08-05.json | 4728 ++++++++-------- .../data/split/dev/openapi-v2-2024-08-05.yaml | 3180 +++++------ .../data/split/dev/openapi-v2-2025-01-01.json | 4800 ++++++++--------- .../data/split/dev/openapi-v2-2025-01-01.yaml | 3228 +++++------ 16 files changed, 26223 insertions(+), 26223 deletions(-) diff --git a/tools/cli/internal/openapi/filter/code_sample.go b/tools/cli/internal/openapi/filter/code_sample.go index 27b5613dfb..1c8bc8d686 100644 --- a/tools/cli/internal/openapi/filter/code_sample.go +++ b/tools/cli/internal/openapi/filter/code_sample.go @@ -95,7 +95,7 @@ func (f *CodeSampleFilter) newServiceAccountCurlCodeSamplesForOperation(pathName return codeSample{ Lang: "cURL", - Label: "curl (Service Account - oauth2)", + Label: "curl (Service Accounts)", Source: source, } } @@ -131,9 +131,9 @@ func (f *CodeSampleFilter) includeCodeSamplesForOperation(pathName, opMethod str } op.Extensions[codeSampleExtensionName] = []codeSample{ + newAtlasCliCodeSamplesForOperation(op), f.newServiceAccountCurlCodeSamplesForOperation(pathName, opMethod), f.newDigestCurlCodeSamplesForOperation(pathName, opMethod), - newAtlasCliCodeSamplesForOperation(op), } return nil } diff --git a/tools/cli/internal/openapi/filter/code_sample_test.go b/tools/cli/internal/openapi/filter/code_sample_test.go index a18be849d3..be70fc8638 100644 --- a/tools/cli/internal/openapi/filter/code_sample_test.go +++ b/tools/cli/internal/openapi/filter/code_sample_test.go @@ -78,7 +78,7 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl (Service Account - oauth2)", + Label: "curl (Service Accounts)", Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, @@ -147,7 +147,7 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl (Service Account - oauth2)", + Label: "curl (Service Accounts)", Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, @@ -216,7 +216,7 @@ func TestCodeSampleFilter(t *testing.T) { "x-codeSamples": []codeSample{ { Lang: "cURL", - Label: "curl (Service Account - oauth2)", + Label: "curl (Service Accounts)", Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, 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 d3d9c22ab1..d7754bd531 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 @@ -242,18 +242,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getSystemStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -304,18 +304,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationMatchersFieldNames --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -372,18 +372,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listClustersForAllProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -440,18 +440,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listEventTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -499,18 +499,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederationApp --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -570,18 +570,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listConnectedOrgConfigs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -648,18 +648,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api removeConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -724,18 +724,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -811,18 +811,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" } ] } @@ -879,18 +879,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listRoleMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -956,18 +956,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" } ] } @@ -1034,18 +1034,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1113,18 +1113,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1203,18 +1203,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" } ] } @@ -1306,18 +1306,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIdentityProviders --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1385,18 +1385,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-01-01" @@ -1471,18 +1471,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-01-01" @@ -1537,18 +1537,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProviderMetadata --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1608,18 +1608,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1699,18 +1699,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" } ] } @@ -1778,18 +1778,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1843,18 +1843,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1906,18 +1906,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1986,18 +1986,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" } ] } @@ -2061,18 +2061,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectIpAccessLists --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2154,18 +2154,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" } ] } @@ -2234,18 +2234,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2315,18 +2315,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2397,18 +2397,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpAccessListStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2468,18 +2468,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2542,18 +2542,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" } ] } @@ -2617,18 +2617,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2693,18 +2693,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2780,18 +2780,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] }, @@ -2870,18 +2870,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] } @@ -2957,18 +2957,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertsByAlertConfigurationId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3044,18 +3044,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlerts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3121,18 +3121,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3211,18 +3211,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api acknowledgeAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -3298,18 +3298,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationsByAlertId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3373,18 +3373,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3444,18 +3444,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -3525,18 +3525,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -3620,18 +3620,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKeyRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] }, @@ -3706,18 +3706,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -3768,18 +3768,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3842,18 +3842,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" } ] } @@ -3904,18 +3904,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3975,18 +3975,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" } ] } @@ -4047,18 +4047,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listExportBuckets --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-05-30" @@ -4128,18 +4128,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -4207,18 +4207,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -4281,18 +4281,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-05-30" @@ -4348,18 +4348,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-01" @@ -4438,18 +4438,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-01" @@ -4501,18 +4501,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api listCloudProviderAccessRoles --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" } ] }, @@ -4576,18 +4576,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" } ] } @@ -4662,18 +4662,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deauthorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -4736,18 +4736,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4829,18 +4829,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api authorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" } ] } @@ -4910,18 +4910,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listClusters --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -4995,18 +4995,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -5086,18 +5086,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderRegions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -5171,18 +5171,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" } ] } @@ -5256,18 +5256,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedClusterToServerless --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" } ] } @@ -5345,18 +5345,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2025-06-01" @@ -5425,18 +5425,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -5519,18 +5519,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -5603,18 +5603,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupExportJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5692,18 +5692,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" } ] } @@ -5772,18 +5772,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -5855,18 +5855,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5947,18 +5947,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -6036,18 +6036,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api cancelBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -6120,18 +6120,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6195,18 +6195,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllBackupSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-08-05" @@ -6269,18 +6269,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-08-05" @@ -6357,18 +6357,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" } ], "x-sunset": "2025-08-05" @@ -6444,18 +6444,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listReplicaSetBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6530,18 +6530,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api takeSnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" } ] } @@ -6616,18 +6616,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -6703,18 +6703,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6780,18 +6780,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listShardedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6869,18 +6869,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -6956,18 +6956,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -7054,18 +7054,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateSnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -7151,18 +7151,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api downloadSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" } ] } @@ -7245,18 +7245,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" } ] } @@ -7322,18 +7322,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7411,18 +7411,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7488,18 +7488,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7577,18 +7577,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7661,18 +7661,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupCheckpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7754,18 +7754,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupCheckpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7850,18 +7850,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -7951,18 +7951,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexesDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8046,18 +8046,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2025-06-01" @@ -8136,18 +8136,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8243,18 +8243,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8323,18 +8323,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8403,18 +8403,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllCustomZoneMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8495,18 +8495,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomZoneMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8594,18 +8594,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8689,18 +8689,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8870,18 +8870,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRollingIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" } ] } @@ -8957,18 +8957,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOnlineArchives --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9053,18 +9053,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" } ] } @@ -9167,18 +9167,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadOnlineArchiveQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -9260,18 +9260,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -9354,18 +9354,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9462,18 +9462,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" } ] } @@ -9546,18 +9546,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api endOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9628,18 +9628,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9718,18 +9718,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api startOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" } ] } @@ -9800,18 +9800,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -9896,18 +9896,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -9969,18 +9969,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api testFailover --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -10068,18 +10068,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10155,18 +10155,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" } ] } @@ -10245,18 +10245,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -10323,18 +10323,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -10400,18 +10400,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -10491,18 +10491,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -10582,18 +10582,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -10658,18 +10658,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10742,18 +10742,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" } ] } @@ -10840,18 +10840,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacySnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -10930,18 +10930,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -11015,18 +11015,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11111,18 +11111,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -11185,18 +11185,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11308,18 +11308,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -11398,18 +11398,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api listPeeringContainerByCloudProvider --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" } ] }, @@ -11481,18 +11481,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" } ] } @@ -11552,18 +11552,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11636,18 +11636,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -11709,18 +11709,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11805,18 +11805,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" } ] } @@ -11870,18 +11870,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCustomDatabaseRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11953,18 +11953,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" } ] } @@ -12030,18 +12030,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12102,18 +12102,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12194,18 +12194,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" } ] } @@ -12272,18 +12272,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listFederatedDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12352,18 +12352,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" } ] } @@ -12423,18 +12423,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12495,18 +12495,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12587,18 +12587,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" } ] } @@ -12664,18 +12664,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12747,18 +12747,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12831,18 +12831,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12929,18 +12929,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOneDataFederationQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -13030,18 +13030,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadFederatedDatabaseQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13101,18 +13101,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13336,18 +13336,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" } ] } @@ -13423,18 +13423,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -13505,18 +13505,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13607,18 +13607,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" } ] } @@ -13690,18 +13690,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUserCertificates --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13787,18 +13787,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUserCertificate --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" } ] } @@ -13915,18 +13915,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByClusterName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14040,18 +14040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByHostname --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14102,18 +14102,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14182,18 +14182,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" } ] } @@ -14256,18 +14256,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14339,18 +14339,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" } ] } @@ -14436,18 +14436,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14520,18 +14520,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14658,18 +14658,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14744,18 +14744,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14809,18 +14809,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listMetricTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14920,18 +14920,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15034,18 +15034,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15140,18 +15140,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15217,18 +15217,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listThirdPartyIntegrations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15307,18 +15307,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "Atlas CLI", + "source": "atlas api deleteThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -15395,18 +15395,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15506,18 +15506,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] }, @@ -15614,18 +15614,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] } @@ -15689,18 +15689,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -15768,18 +15768,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -15841,18 +15841,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -15914,18 +15914,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2024-10-04" @@ -15991,18 +15991,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api getProjectInvitation --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" } ], "x-sunset": "2024-10-04" @@ -16079,18 +16079,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -16145,18 +16145,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnAllIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16219,18 +16219,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16311,18 +16311,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -16404,18 +16404,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -16508,18 +16508,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -16593,18 +16593,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -16679,18 +16679,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api validateMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -16761,18 +16761,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getValidationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16832,18 +16832,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16903,18 +16903,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api cutoverMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" } ] } @@ -16962,18 +16962,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "Atlas CLI", + "source": "atlas api resetMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17022,18 +17022,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17093,18 +17093,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" } ] } @@ -17152,18 +17152,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleMaintenanceAutoDefer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" } ] } @@ -17211,18 +17211,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api deferMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" } ] } @@ -17273,18 +17273,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedSlowMs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17335,18 +17335,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "Atlas CLI", + "source": "atlas api disableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17397,18 +17397,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api enableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" } ] } @@ -17520,18 +17520,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLTSVersions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17608,18 +17608,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17692,18 +17692,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" } ] } @@ -17769,18 +17769,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -17844,18 +17844,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17936,18 +17936,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" } ] } @@ -18001,18 +18001,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelines --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18075,18 +18075,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" } ] } @@ -18149,18 +18149,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -18224,18 +18224,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18313,18 +18313,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" } ] } @@ -18393,18 +18393,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18489,18 +18489,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18566,18 +18566,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pausePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" } ] } @@ -18643,18 +18643,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api resumePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" } ] } @@ -18739,18 +18739,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineRuns --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18829,18 +18829,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipelineRunDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -18917,18 +18917,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipelineRun --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19005,18 +19005,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api triggerSnapshotIngestion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" } ] } @@ -19082,18 +19082,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" } ] } @@ -19147,18 +19147,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19221,18 +19221,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" } ] } @@ -19297,18 +19297,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19383,18 +19383,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" } ] } @@ -19468,18 +19468,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -19551,18 +19551,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19645,18 +19645,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" } ] } @@ -19725,18 +19725,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPrivateEndpointServices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19814,18 +19814,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -19904,18 +19904,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20013,18 +20013,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" } ] } @@ -20112,18 +20112,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20212,18 +20212,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20279,18 +20279,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20358,18 +20358,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api disablePeering --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" } ] } @@ -20435,18 +20435,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDataFederationPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20509,18 +20509,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" } ] } @@ -20586,18 +20586,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20664,18 +20664,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20735,18 +20735,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasProcesses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20808,18 +20808,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20890,18 +20890,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20972,18 +20972,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21093,18 +21093,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21175,18 +21175,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskPartitions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21254,18 +21254,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21384,18 +21384,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21621,18 +21621,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21712,18 +21712,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueryNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21827,18 +21827,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21958,18 +21958,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSuggestedIndexes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22026,18 +22026,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "Atlas CLI", + "source": "atlas api deletePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22092,18 +22092,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22170,18 +22170,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] }, @@ -22248,18 +22248,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] } @@ -22325,18 +22325,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api loadSampleDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" } ] } @@ -22396,18 +22396,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSampleDatasetLoadStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22467,18 +22467,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api listServerlessInstances --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" } ] }, @@ -22544,18 +22544,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" } ] } @@ -22630,18 +22630,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22722,18 +22722,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -22811,18 +22811,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22897,18 +22897,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22984,18 +22984,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23058,18 +23058,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23136,18 +23136,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" } ] } @@ -23216,18 +23216,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -23294,18 +23294,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23380,18 +23380,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" } ] } @@ -23448,18 +23448,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23525,18 +23525,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" } ] } @@ -23605,18 +23605,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23692,18 +23692,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addAllTeamsToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" } ] } @@ -23773,18 +23773,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -23869,18 +23869,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateTeamRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -23931,18 +23931,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24005,18 +24005,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api saveLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" } ] } @@ -24064,18 +24064,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "Atlas CLI", + "source": "atlas api disableCustomerManagedX509 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24126,18 +24126,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24202,18 +24202,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api verifyLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" } ] } @@ -24276,18 +24276,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfigurationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24365,18 +24365,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24442,18 +24442,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -24533,18 +24533,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -24618,18 +24618,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24698,18 +24698,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" } ] } @@ -24769,18 +24769,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -24838,18 +24838,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24918,18 +24918,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" } ] } @@ -24993,18 +24993,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25068,18 +25068,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -25146,18 +25146,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25222,18 +25222,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25312,18 +25312,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -25399,18 +25399,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeyAccessListsEntries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25500,18 +25500,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" } ] } @@ -25595,18 +25595,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKeyAccessListEntry --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25685,18 +25685,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25758,18 +25758,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" } ] } @@ -25844,18 +25844,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess_1 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25954,18 +25954,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26040,18 +26040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26108,18 +26108,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26193,18 +26193,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26273,18 +26273,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26350,18 +26350,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] }, @@ -26427,18 +26427,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] } @@ -26504,18 +26504,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -26579,18 +26579,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api getOrganizationInvitation --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" } ] }, @@ -26668,18 +26668,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" } ] } @@ -26821,18 +26821,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26886,18 +26886,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPendingInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26969,18 +26969,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getInvoice --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27045,18 +27045,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadInvoiceCSV --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27113,18 +27113,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSourceProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27175,18 +27175,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "Atlas CLI", + "source": "atlas api deleteLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27249,18 +27249,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" } ] } @@ -27317,18 +27317,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27394,18 +27394,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" } ] } @@ -27475,18 +27475,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27559,18 +27559,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" } ] } @@ -27640,18 +27640,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27724,18 +27724,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27806,18 +27806,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27902,18 +27902,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -27995,18 +27995,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listTeamUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28094,18 +28094,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" } ] } @@ -28187,18 +28187,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api removeTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -28264,18 +28264,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28344,18 +28344,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeOrganizationUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -28435,18 +28435,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -28508,18 +28508,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" } ] } @@ -28580,18 +28580,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getUserByUsername --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28654,18 +28654,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUser --help" + "label": "curl (Digest)", + "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\"" } ] } 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 1f5f78b325..696ab385ba 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 @@ -28293,7 +28293,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSystemStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28306,9 +28309,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getSystemStatus --help /api/atlas/v2/alertConfigs/matchers/fieldNames: get: description: Get all field names that the `matchers.fieldName` parameter accepts when you create or update an Alert Configuration. You can successfully call this endpoint with any assigned role. @@ -28336,7 +28336,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationMatchersFieldNames --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28349,9 +28352,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help /api/atlas/v2/clusters: get: description: Returns the details for all clusters in all projects to which you have access. Clusters contain a group of hosts that maintain the same data set. The response does not include multi-cloud clusters. To use this resource, the requesting API Key can have any cluster-level role. @@ -28380,7 +28380,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClustersForAllProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28393,9 +28396,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClustersForAllProjects --help /api/atlas/v2/eventTypes: get: description: Returns a list of all event types, along with a description and additional metadata about each event. @@ -28424,7 +28424,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listEventTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28437,9 +28440,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listEventTypes --help /api/atlas/v2/federationSettings/{federationSettingsId}: delete: description: 'Deletes the federation settings instance and all associated data, including identity providers and domains. To use this resource, the requesting API Key must have the Organization Owner role in the last remaining connected organization. **Note**: requests to this resource will fail if there is more than one connected organization in the federation.' @@ -28466,7 +28466,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederationApp --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28479,9 +28482,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederationApp --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: get: description: Returns all connected org configs in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected orgs. @@ -28513,7 +28513,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listConnectedOrgConfigs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28526,9 +28529,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listConnectedOrgConfigs --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: delete: description: 'Removes one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. Note: This request fails if only one connected organization exists in the federation.' @@ -28568,7 +28568,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28581,9 +28584,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeConnectedOrgConfig --help get: description: Returns the specified connected org config from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. operationId: getConnectedOrgConfig @@ -28622,7 +28622,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28635,9 +28638,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: "Updates one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. \n\n**Note** If the organization configuration has no associated identity provider, you can't use this resource to update role mappings or post authorization role grants. \n\n**Note**: The domainRestrictionEnabled field defaults to false if not provided in the request. \n\n**Note**: If the identityProviderId field is not provided, you will disconnect the organization and the identity provider. \n\n**Note**: Currently connected data access identity providers missing from the dataAccessIdentityProviderIds field will be disconnected." operationId: updateConnectedOrgConfig @@ -28683,7 +28683,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28700,9 +28703,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateConnectedOrgConfig --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings: get: description: Returns all role mappings from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -28733,7 +28733,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listRoleMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28746,9 +28749,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Adds one role mapping to the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createRoleMapping @@ -28785,7 +28785,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28802,9 +28805,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}: delete: description: Removes one role mapping in the specified organization from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -28843,7 +28843,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28856,9 +28859,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns one role mapping from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getRoleMapping @@ -28898,7 +28898,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28911,9 +28914,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 put: description: Updates one role mapping in the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateRoleMapping @@ -28960,7 +28960,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28977,9 +28980,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders: get: description: Returns all identity providers with the provided protocol and type in the specified federation. If no protocol is specified, only SAML identity providers will be returned. If no idpType is specified, only WORKFORCE identity providers will be returned. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -29033,7 +29033,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIdentityProviders --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29046,9 +29049,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listIdentityProviders --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}: get: deprecated: true @@ -29088,7 +29088,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29101,9 +29104,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-01-01" patch: deprecated: true @@ -29151,7 +29151,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29168,9 +29171,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateIdentityProvider --help x-sunset: "2025-01-01" /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: get: @@ -29201,7 +29201,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProviderMetadata --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29214,9 +29217,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups: get: description: Returns details about all projects. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Organization Read Only role or higher. @@ -29247,7 +29247,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29260,9 +29263,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjects --help post: description: Creates one project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Read Write role. operationId: createProject @@ -29310,7 +29310,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29327,9 +29330,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProject --help /api/atlas/v2/groups/{groupId}: delete: description: Removes the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. You can delete a project only if there are no Online Archives for the clusters in the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -29358,7 +29358,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29371,9 +29374,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProject --help get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProject @@ -29401,7 +29401,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29414,9 +29417,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProject --help patch: description: Updates the human-readable label that identifies the specified project, or the tags associated with the project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProject @@ -29455,7 +29455,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29472,9 +29475,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProject --help /api/atlas/v2/groups/{groupId}/accessList: get: description: Returns all access list entries from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -29507,7 +29507,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectIpAccessLists --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29520,9 +29523,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectIpAccessLists --help post: description: Adds one or more access list entries to the specified project. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. Write each entry as either one IP address or one CIDR-notated block of IP addresses. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. This endpoint doesn't support concurrent `POST` requests. You must submit multiple `POST` requests synchronously. externalDocs: @@ -29567,7 +29567,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29584,9 +29587,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectIpAccessList --help /api/atlas/v2/groups/{groupId}/accessList/{entryValue}: delete: description: Removes one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains one IP address, one CIDR-notated block of IP addresses, or one AWS Security Group ID. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Owner role. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -29631,7 +29631,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29644,9 +29647,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectIpAccessList --help get: description: Returns one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. This endpoint (`/groups/{GROUP-ID}/accessList`) manages the Project IP Access List. It doesn't manage the access list for MongoDB Cloud organizations. TheProgrammatic API Keys endpoint (`/orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist`) manages those access lists. externalDocs: @@ -29687,7 +29687,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29700,9 +29703,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: get: description: Returns the status of one project IP access list entry. This resource checks if the provided project IP access list entry applies to all cloud providers serving clusters from the specified project. @@ -29743,7 +29743,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpAccessListStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29756,9 +29759,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/alertConfigs: get: description: |- @@ -29791,7 +29791,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29804,9 +29807,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurations --help post: description: |- Creates one alert configuration for the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -29844,7 +29844,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29861,9 +29864,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}: delete: description: |- @@ -29903,7 +29903,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29916,9 +29919,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteAlertConfiguration --help get: description: |- Returns the specified alert configuration from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -29959,7 +29959,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29972,9 +29975,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: |- Enables or disables the specified alert configuration in the specified project. The resource enables the specified alert configuration if currently enabled. The resource disables the specified alert configuration if currently disabled. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -30024,7 +30024,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30041,9 +30044,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAlertConfiguration --help put: description: |- Updates one alert configuration in the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -30095,7 +30095,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30112,9 +30115,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts: get: description: |- @@ -30159,7 +30159,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertsByAlertConfigurationId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30172,9 +30175,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/alerts: get: description: |- @@ -30218,7 +30218,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlerts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30231,9 +30234,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlerts --help /api/atlas/v2/groups/{groupId}/alerts/{alertId}: get: description: |- @@ -30274,7 +30274,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30287,9 +30290,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: deprecated: true description: |- @@ -30339,7 +30339,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api acknowledgeAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30356,9 +30359,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api acknowledgeAlert --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs: get: @@ -30403,7 +30403,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationsByAlertId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30416,9 +30419,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/apiKeys: get: description: Returns all organization API keys that you assigned to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. @@ -30451,7 +30451,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30464,9 +30467,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectApiKeys --help post: description: Creates and assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: createProjectApiKey @@ -30499,7 +30499,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30516,9 +30519,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectApiKey --help /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -30559,7 +30559,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30572,9 +30575,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectApiKey --help patch: description: Updates the roles of the organization API key that you specify for the project that you specify. You must specify at least one valid role for the project. The application removes any roles that you do not include in this request if they were previously set in the organization API key that you specify for the project. operationId: updateApiKeyRoles @@ -30621,7 +30621,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKeyRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30638,9 +30641,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKeyRoles --help post: description: Assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can then use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: addProjectApiKey @@ -30684,7 +30684,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30701,9 +30704,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectApiKey --help /api/atlas/v2/groups/{groupId}/auditLog: get: description: Returns the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. @@ -30730,7 +30730,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30743,9 +30746,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAuditingConfiguration --help patch: description: Updates the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. operationId: updateAuditingConfiguration @@ -30780,7 +30780,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30797,9 +30800,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAuditingConfiguration --help /api/atlas/v2/groups/{groupId}/awsCustomDNS: get: description: Returns the custom DNS configuration for AWS clusters in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -30826,7 +30826,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30839,9 +30842,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAWSCustomDNS --help patch: description: Enables or disables the custom DNS configuration for AWS clusters in the specified project. Enable custom DNS if you use AWS VPC peering and use your own DNS servers. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: toggleAWSCustomDNS @@ -30874,7 +30874,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30891,9 +30894,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAWSCustomDNS --help /api/atlas/v2/groups/{groupId}/backup/exportBuckets: get: deprecated: true @@ -30924,7 +30924,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listExportBuckets --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30937,9 +30940,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-05-30" post: deprecated: true @@ -30980,7 +30980,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30997,9 +31000,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createExportBucket --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}: delete: @@ -31040,7 +31040,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31053,9 +31056,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteExportBucket --help get: deprecated: true description: Returns one AWS S3 Bucket or Azure Blob Storage Container associated with the specified Project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -31093,7 +31093,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31106,9 +31109,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/backupCompliancePolicy: get: @@ -31139,7 +31139,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31152,9 +31155,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getDataProtectionSettings --help x-sunset: "2024-10-01" put: deprecated: true @@ -31201,7 +31201,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31218,9 +31221,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDataProtectionSettings --help x-sunset: "2024-10-01" /api/atlas/v2/groups/{groupId}/cloudProviderAccess: get: @@ -31248,7 +31248,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderAccessRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31261,9 +31264,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listCloudProviderAccessRoles --help post: description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -31299,7 +31299,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31316,9 +31319,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}: delete: description: Revokes access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. @@ -31362,7 +31362,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deauthorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31375,9 +31378,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - - label: Atlas CLI - lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: get: description: Returns the access role with the specified id and with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -31413,7 +31413,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31426,9 +31429,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Grants access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. This API endpoint is one step in a procedure to create unified access for MongoDB Cloud services. externalDocs: @@ -31477,7 +31477,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api authorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31494,9 +31497,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/clusters: get: deprecated: true @@ -31533,7 +31533,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClusters --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31546,9 +31549,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClusters --help x-sunset: "2025-06-01" post: deprecated: true @@ -31591,7 +31591,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31608,9 +31611,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCluster --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}: delete: @@ -31657,7 +31657,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31670,9 +31673,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCluster --help x-sunset: "2025-06-01" get: deprecated: true @@ -31713,7 +31713,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31726,9 +31729,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-06-01" patch: deprecated: true @@ -31778,7 +31778,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31795,9 +31798,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCluster --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: get: @@ -31837,7 +31837,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupExportJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31850,9 +31853,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Exports one backup snapshot for dedicated Atlas cluster using Cloud Backups to an Export Bucket. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: createBackupExportJob @@ -31899,7 +31899,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31916,9 +31919,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupExportJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}: get: description: Returns one Cloud Backup snapshot export job associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -31959,7 +31959,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31972,9 +31975,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: get: description: Returns all cloud backup restore jobs for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32013,7 +32013,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32026,9 +32029,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: |- Restores one snapshot of one cluster from the specified project. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -32079,7 +32079,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32096,9 +32099,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}: delete: description: Cancels one cloud backup restore job of one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32145,7 +32145,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cancelBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32158,9 +32161,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns one cloud backup restore job for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: getBackupRestoreJob @@ -32204,7 +32204,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32217,9 +32220,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: delete: deprecated: true @@ -32257,7 +32257,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllBackupSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32270,9 +32273,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-08-05" get: deprecated: true @@ -32309,7 +32309,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32322,9 +32325,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-08-05" patch: deprecated: true @@ -32373,7 +32373,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32390,9 +32393,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateBackupSchedule --help x-sunset: "2025-08-05" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots: get: @@ -32434,7 +32434,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listReplicaSetBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32447,9 +32450,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: |- Takes one on-demand snapshot for the specified cluster. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -32496,7 +32496,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api takeSnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32513,9 +32516,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api takeSnapshot --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}: delete: description: Removes the specified snapshot. To use this resource, the requesting API Key must have the Project Owner role. @@ -32562,7 +32562,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32575,9 +32578,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns one snapshot from the specified cluster. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getReplicaSetBackup @@ -32623,7 +32623,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32636,9 +32639,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Changes the expiration date for one cloud backup snapshot for one cluster in the specified project. operationId: updateSnapshotRetention @@ -32691,7 +32691,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateSnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32708,9 +32711,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateSnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}: delete: description: Removes one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32755,7 +32755,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32768,9 +32771,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getShardedClusterBackup @@ -32816,7 +32816,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32829,9 +32832,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: get: description: Returns all snapshots of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -32869,7 +32869,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listShardedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32882,9 +32885,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: post: description: Requests one snapshot for the specified shared cluster. This resource returns a `snapshotURL` that you can use to download the snapshot. This `snapshotURL` remains active for four hours after you make the request. To use this resource, the requesting API Key must have the Project Owner role. @@ -32935,7 +32935,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32952,9 +32955,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api downloadSharedClusterBackup --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore: post: description: Restores the specified cluster. MongoDB Cloud limits which clusters can be the target clusters of a restore. The target cluster can't use encryption at rest, run a major release MongoDB version different than the snapshot, or receive client requests during restores. MongoDB Cloud deletes all existing data on the target cluster prior to the restore operation. To use this resource, the requesting API Key must have the Project Owner role. @@ -33003,7 +33003,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33018,11 +33021,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ - -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores: get: description: Returns all restore jobs for the specified M2 or M5 cluster. Restore jobs restore a cluster using a snapshot. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33060,7 +33060,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33073,9 +33076,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: get: description: Returns the specified restore job. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33122,7 +33122,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33135,9 +33138,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: get: description: Returns details for all snapshots for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33175,7 +33175,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33188,9 +33191,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: get: description: Returns details for one snapshot for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33237,7 +33237,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33250,9 +33253,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: get: deprecated: true @@ -33292,7 +33292,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupCheckpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33305,9 +33308,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: get: deprecated: true @@ -33357,7 +33357,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupCheckpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33370,9 +33373,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes: post: deprecated: true @@ -33423,7 +33423,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33440,9 +33443,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}: get: @@ -33497,7 +33497,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexesDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33510,9 +33513,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}: delete: @@ -33564,7 +33564,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33577,9 +33580,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-06-01" get: deprecated: true @@ -33628,7 +33628,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33641,9 +33644,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-06-01" patch: deprecated: true @@ -33703,7 +33703,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33720,9 +33723,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites: get: @@ -33763,7 +33763,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33776,9 +33779,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping: delete: @@ -33819,7 +33819,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllCustomZoneMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33832,9 +33835,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-06-01" post: deprecated: true @@ -33883,7 +33883,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomZoneMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33900,9 +33903,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomZoneMapping --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces: delete: @@ -33955,7 +33955,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33968,9 +33971,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-06-01" post: deprecated: true @@ -34021,7 +34021,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34038,9 +34041,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createManagedNamespace --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index: post: @@ -34152,7 +34152,10 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRollingIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34169,9 +34172,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRollingIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives: get: description: Returns details of all online archives. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34213,7 +34213,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOnlineArchives --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34226,9 +34229,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Creates one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -34279,7 +34279,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34296,9 +34299,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}: delete: description: Removes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. @@ -34348,7 +34348,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34361,9 +34364,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns one online archive for one cluster. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. externalDocs: @@ -34414,7 +34414,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34427,9 +34430,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates, pauses, or resumes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -34489,7 +34489,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34506,9 +34509,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz: get: description: 'Downloads query logs for the specified online archive. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -34574,7 +34574,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadOnlineArchiveQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34587,9 +34590,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation: delete: description: Ends a cluster outage simulation. @@ -34632,7 +34632,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api endOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34645,9 +34648,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - - label: Atlas CLI - lang: cURL - source: atlas api endOutageSimulation --help get: description: Returns one outage simulation for one cluster. externalDocs: @@ -34689,7 +34689,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34702,9 +34705,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Starts a cluster outage simulation. externalDocs: @@ -34751,7 +34751,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api startOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34768,9 +34771,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api startOutageSimulation --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs: get: deprecated: true @@ -34812,7 +34812,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34825,9 +34828,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -34879,7 +34879,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34896,9 +34899,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries: post: @@ -34934,7 +34934,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api testFailover --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34951,9 +34954,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api testFailover --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs: get: @@ -35007,7 +35007,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35020,9 +35023,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: deprecated: true description: Restores one legacy backup for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). This endpoint doesn't support creating checkpoint restore jobs for sharded clusters, or creating restore jobs for queryable backup snapshots. If you create an automated restore job by specifying `delivery.methodName` of `AUTOMATED_RESTORE` in your request body, MongoDB Cloud removes all existing data on the target cluster prior to the restore. @@ -35067,7 +35067,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35084,9 +35087,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLegacyBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}: get: deprecated: true @@ -35137,7 +35137,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35150,9 +35153,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: delete: deprecated: true @@ -35191,7 +35191,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35204,9 +35207,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2026-03-01" get: deprecated: true @@ -35245,7 +35245,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35258,9 +35261,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -35308,7 +35308,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35325,9 +35328,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchDeployment --help x-sunset: "2026-03-01" post: deprecated: true @@ -35375,7 +35375,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35392,9 +35395,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchDeployment --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule: get: @@ -35435,7 +35435,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35448,9 +35451,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: deprecated: true description: |- @@ -35496,7 +35496,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35513,9 +35516,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotSchedule --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots: get: deprecated: true @@ -35565,7 +35565,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacySnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35578,9 +35581,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: delete: deprecated: true @@ -35628,7 +35628,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35641,9 +35644,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: deprecated: true description: Returns one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -35688,7 +35688,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35701,9 +35704,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: deprecated: true description: Changes the expiration date for one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -35755,7 +35755,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35770,11 +35773,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ - -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotRetention --help + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status: get: description: Returns the status of all changes that you made to the specified cluster in the specified project. Use this resource to check the progress MongoDB Cloud has made in processing your changes. The response does not include the deployment of new dedicated clusters. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35810,7 +35810,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35823,9 +35826,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: get: deprecated: true @@ -35897,7 +35897,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35910,9 +35913,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/provider/regions: get: @@ -35955,7 +35955,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderRegions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35968,9 +35971,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: post: description: Upgrades a shared-tier cluster in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. Each project supports up to 25 clusters. @@ -36012,7 +36012,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36029,9 +36032,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedCluster --help /api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless: post: description: Upgrades a shared-tier cluster to a serverless instance in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. @@ -36073,7 +36073,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedClusterToServerless --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36090,9 +36093,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedClusterToServerless --help /api/atlas/v2/groups/{groupId}/containers: get: description: Returns details about all network peering containers in the specified project for the specified cloud provider. If you do not specify the cloud provider, MongoDB Cloud returns details about all network peering containers in the project for Amazon Web Services (AWS). To use this resource, the requesting API Key must have the Project Read Only role. @@ -36135,7 +36135,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainerByCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36148,9 +36151,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help post: description: Creates one new network peering container in the specified project. MongoDB Cloud can deploy Network Peering connections in a network peering container. GCP can have one container per project. AWS and Azure can have one container per cloud provider region. To use this resource, the requesting API Key must have the Project Owner role. operationId: createPeeringContainer @@ -36191,7 +36191,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36208,9 +36211,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/{containerId}: delete: description: Removes one network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -36253,7 +36253,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36266,9 +36269,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringContainer --help get: description: Returns details about one network peering container in one specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringContainer @@ -36304,7 +36304,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36317,9 +36320,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates the network details and labels of one specified network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringContainer @@ -36370,7 +36370,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36387,9 +36390,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/all: get: description: Returns details about all network peering containers in the specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36419,7 +36419,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36432,9 +36435,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/customDBRoles/roles: get: description: Returns all custom roles for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36463,7 +36463,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCustomDatabaseRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36476,9 +36479,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Creates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createCustomDatabaseRole @@ -36519,7 +36519,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36536,9 +36539,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}: delete: description: Removes one custom role from the specified project. You can't remove a custom role that would leave one or more child roles with no parent roles or actions. You also can't remove a custom role that would leave one or more database users without roles. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -36575,7 +36575,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36588,9 +36591,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCustomDatabaseRole --help get: description: Returns one custom role for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getCustomDatabaseRole @@ -36624,7 +36624,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36637,9 +36640,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateCustomDatabaseRole @@ -36686,7 +36686,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36703,9 +36706,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/dataFederation: get: description: Returns the details of all federated database instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only or higher role. @@ -36743,7 +36743,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listFederatedDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36756,9 +36759,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listFederatedDatabases --help post: description: Creates one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createFederatedDatabase @@ -36797,7 +36797,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36814,9 +36817,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}: delete: description: Removes one federated database instance from the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. @@ -36849,7 +36849,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36862,9 +36865,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederatedDatabase --help get: description: Returns the details of one federated database instance within the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getFederatedDatabase @@ -36899,7 +36899,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36912,9 +36915,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates the details of one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or higher role. operationId: updateFederatedDatabase @@ -36961,7 +36961,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36978,9 +36981,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits: get: description: Returns query limits for a federated databases instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37017,7 +37017,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37030,9 +37033,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: delete: description: Deletes one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -37083,7 +37083,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOneDataFederationInstanceQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37096,9 +37099,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns the details of one query limit for the specified federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: returnFederatedDatabaseQueryLimit @@ -37149,7 +37149,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37162,9 +37165,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Creates or updates one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: createOneDataFederationQueryLimit @@ -37225,7 +37225,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOneDataFederationQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37242,9 +37245,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOneDataFederationQueryLimit --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz: get: description: 'Downloads the query logs for the specified federated database instance. To use this resource, the requesting API Key must have the Project Owner or Project Data Access Read Write roles. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -37301,7 +37301,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadFederatedDatabaseQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37314,9 +37317,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/databaseUsers: get: description: Returns all database users that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37346,7 +37346,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37359,9 +37362,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listDatabaseUsers --help post: description: Creates one database user in the specified project. This MongoDB Cloud supports a maximum of 100 database users per project. If you require more than 100 database users on a project, contact [Support](https://cloud.mongodb.com/support). To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createDatabaseUser @@ -37493,7 +37493,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37510,9 +37513,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}: delete: description: Removes one database user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -37569,7 +37569,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37582,9 +37585,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDatabaseUser --help get: description: Returns one database user that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getDatabaseUser @@ -37638,7 +37638,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37651,9 +37654,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates one database user that belongs to the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: updateDatabaseUser @@ -37720,7 +37720,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37737,9 +37740,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs: get: description: Returns all unexpired X.509 certificates for the specified MongoDB user. This MongoDB user belongs to one project. Atlas manages these certificates and the MongoDB user. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37777,7 +37777,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUserCertificates --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37790,9 +37793,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: |- Generates one X.509 certificate for the specified MongoDB user. Atlas manages the certificate and MongoDB user that belong to one project. To use this resource, the requesting API Key must have the Project Owner role. @@ -37848,7 +37848,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUserCertificate --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37865,9 +37868,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUserCertificate --help /api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}: get: description: Returns the access logs of one cluster identified by the cluster's name. Access logs contain a list of authentication requests made against your cluster. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -37940,7 +37940,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByClusterName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37953,9 +37956,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: get: description: Returns the access logs of one cluster identified by the cluster's hostname. Access logs contain a list of authentication requests made against your clusters. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -38025,7 +38025,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByHostname --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38038,9 +38041,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/encryptionAtRest: get: description: |- @@ -38070,7 +38070,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38083,9 +38086,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getEncryptionAtRest --help patch: description: |- Updates the configuration for encryption at rest using the keys you manage through your cloud provider. MongoDB Cloud encrypts all storage even if you don't use your own key management. This resource requires the requesting API Key to have the Project Owner role. This feature isn't available for `M0` free clusters, `M2`, `M5`, or serverless clusters. @@ -38136,7 +38136,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38153,9 +38156,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateEncryptionAtRest --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints: get: description: Returns the private endpoints of the specified cloud provider for encryption at rest using customer key management. @@ -38190,7 +38190,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38203,9 +38206,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Creates a private endpoint in the specified region for encryption at rest using customer key management. operationId: createEncryptionAtRestPrivateEndpoint @@ -38246,7 +38246,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38263,9 +38266,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}: delete: description: Deletes one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. @@ -38316,7 +38316,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38329,9 +38332,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. operationId: getEncryptionAtRestPrivateEndpoint @@ -38374,7 +38374,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38387,9 +38390,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/events: get: description: |- @@ -38473,7 +38473,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38484,11 +38487,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectEvents --help + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" /api/atlas/v2/groups/{groupId}/events/{eventId}: get: description: |- @@ -38535,7 +38535,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38548,9 +38551,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: get: description: Returns all Atlas Search metric types available for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -38579,7 +38579,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listMetricTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38592,9 +38595,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: get: description: Returns the Atlas Search metrics data series within the provided time range for one namespace and index name on the specified process. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -38653,7 +38653,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38666,9 +38669,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: get: description: Returns the Atlas Search index metrics within the specified time range for one namespace in the specified process. @@ -38726,7 +38726,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38739,9 +38742,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: get: description: Returns the Atlas Search hardware and status data series within the provided time range for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -38798,7 +38798,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38811,9 +38814,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/integrations: get: description: Returns the settings that permit integrations with all configured third-party services. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -38847,7 +38847,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listThirdPartyIntegrations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38860,9 +38863,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listThirdPartyIntegrations --help /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: delete: description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -38911,7 +38911,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38924,9 +38927,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteThirdPartyIntegration --help get: description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: getThirdPartyIntegration @@ -38974,7 +38974,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38987,9 +38990,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: createThirdPartyIntegration @@ -39049,7 +39049,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39066,9 +39069,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createThirdPartyIntegration --help put: description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: updateThirdPartyIntegration @@ -39126,7 +39126,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39143,9 +39146,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateThirdPartyIntegration --help /api/atlas/v2/groups/{groupId}/invites: get: deprecated: true @@ -39181,7 +39181,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39194,9 +39197,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectInvitations --help x-sunset: "2024-10-04" patch: deprecated: true @@ -39235,7 +39235,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39252,9 +39255,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitation --help x-sunset: "2024-10-04" post: deprecated: true @@ -39289,7 +39289,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39306,9 +39309,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectInvitation --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/invites/{invitationId}: delete: @@ -39345,7 +39345,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39358,9 +39361,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectInvitation --help x-sunset: "2024-10-04" get: deprecated: true @@ -39399,7 +39399,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39412,9 +39415,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 x-sunset: "2024-10-04" patch: deprecated: true @@ -39461,7 +39461,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39478,9 +39481,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitationById --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/ipAddresses: get: @@ -39510,7 +39510,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39523,9 +39526,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllIPAddresses --help /api/atlas/v2/groups/{groupId}/limits: get: description: Returns all the limits for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39560,7 +39560,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39573,9 +39576,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectLimits --help /api/atlas/v2/groups/{groupId}/limits/{limitName}: delete: description: Removes the specified project limit. Depending on the limit, Atlas either resets the limit to its default value or removes the limit entirely. To use this resource, the requesting API Key must have the Project Owner role. @@ -39642,7 +39642,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39655,9 +39658,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectLimit --help get: description: Returns the specified limit for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProjectLimit @@ -39725,7 +39725,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39738,9 +39741,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: |- Sets the specified project limit. To use this resource, the requesting API Key must have the Project Owner role. @@ -39818,7 +39818,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39835,9 +39838,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setProjectLimit --help /api/atlas/v2/groups/{groupId}/liveMigrations: post: deprecated: true @@ -39887,7 +39887,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39904,9 +39907,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushMigration --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}: get: @@ -39939,7 +39939,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39952,9 +39955,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: put: description: Cut over the migrated cluster to MongoDB Atlas. Confirm when the cut over completes. When the cut over completes, MongoDB Atlas completes the live migration process and stops synchronizing with the source cluster. Your API Key must have the Organization Owner role to successfully call this resource. @@ -39986,7 +39986,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cutoverMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40003,9 +40006,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api cutoverMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/validate: post: deprecated: true @@ -40048,7 +40048,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api validateMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40065,9 +40068,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api validateMigration --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}: get: @@ -40110,7 +40110,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getValidationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40123,9 +40126,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/maintenanceWindow: delete: description: Resets the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -40151,7 +40151,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resetMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40164,9 +40167,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - - label: Atlas CLI - lang: cURL - source: atlas api resetMaintenanceWindow --help get: description: Returns the maintenance window for the specified project. MongoDB Cloud starts those maintenance activities when needed. You can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: getMaintenanceWindow @@ -40192,7 +40192,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40205,9 +40208,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getMaintenanceWindow --help patch: description: Updates the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateMaintenanceWindow @@ -40241,7 +40241,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40258,9 +40261,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer: post: description: Toggles automatic deferral of the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -40286,7 +40286,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleMaintenanceAutoDefer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40303,9 +40306,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/defer: post: description: Defers the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -40331,7 +40331,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deferMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40348,9 +40351,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api deferMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/managedSlowMs: get: description: Get whether the Managed Slow MS feature is enabled. @@ -40377,7 +40377,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedSlowMs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40390,9 +40393,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getManagedSlowMs --help /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: delete: description: Disables the slow operation threshold that MongoDB Cloud calculated for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -40419,7 +40419,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40432,9 +40435,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - - label: Atlas CLI - lang: cURL - source: atlas api disableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: post: description: Enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -40461,7 +40461,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api enableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40478,9 +40481,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api enableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/mongoDBVersions: get: description: Returns the MongoDB Long Term Support Major Versions available to new clusters in this project. @@ -40548,7 +40548,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLTSVersions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40561,9 +40564,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectLTSVersions --help /api/atlas/v2/groups/{groupId}/peers: get: description: Returns details about all network peering connections in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40605,7 +40605,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40618,9 +40621,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringConnections --help post: description: Creates one new network peering connection in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations and prerequisites, see the Network Peering Documentation. externalDocs: @@ -40662,7 +40662,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40679,9 +40682,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringConnection --help /api/atlas/v2/groups/{groupId}/peers/{peerId}: delete: description: Removes one network peering connection in the specified project. If you Removes the last network peering connection associated with a project, MongoDB Cloud also removes any AWS security groups from the project IP access list. To use this resource, the requesting API Key must have the Project Owner role. @@ -40719,7 +40719,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40732,9 +40735,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringConnection --help get: description: Returns details about one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringConnection @@ -40771,7 +40771,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40784,9 +40787,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringConnection @@ -40834,7 +40834,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40851,9 +40854,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringConnection --help /api/atlas/v2/groups/{groupId}/pipelines: get: description: Returns a list of Data Lake Pipelines. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40883,7 +40883,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelines --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40896,9 +40899,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPipelines --help post: description: Creates one Data Lake Pipeline. operationId: createPipeline @@ -40934,7 +40934,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40949,11 +40952,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ - -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPipeline --help + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}: delete: description: Removes one Data Lake Pipeline. @@ -40990,7 +40990,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41003,9 +41006,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePipeline --help get: description: Returns the details of one Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipeline @@ -41042,7 +41042,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41055,9 +41058,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates one Data Lake Pipeline. operationId: updatePipeline @@ -41104,7 +41104,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41121,9 +41124,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules: get: description: Returns a list of backup schedule policy items that you can use as a Data Lake Pipeline source. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41163,7 +41163,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41176,9 +41179,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: get: description: Returns a list of backup snapshots that you can use to trigger an on demand pipeline run. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41226,7 +41226,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41239,9 +41242,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: post: description: Pauses ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41279,7 +41279,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pausePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41296,9 +41299,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pausePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume: post: description: Resumes ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41336,7 +41336,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resumePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41353,9 +41356,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api resumePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs: get: description: Returns a list of past Data Lake Pipeline runs. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41403,7 +41403,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineRuns --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41416,9 +41419,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: delete: description: Deletes dataset that Atlas generated during the specified pipeline run. @@ -41466,7 +41466,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipelineRunDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41479,9 +41482,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns the details of one Data Lake Pipeline run within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipelineRun @@ -41528,7 +41528,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipelineRun --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41541,9 +41544,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: post: description: Triggers a Data Lake Pipeline ingestion of a specified snapshot. @@ -41588,7 +41588,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api triggerSnapshotIngestion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41605,9 +41608,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api triggerSnapshotIngestion --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService: get: description: Returns the name, interfaces, and state of all private endpoint services for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41647,7 +41647,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPrivateEndpointServices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41660,9 +41663,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: delete: description: Removes one private endpoint service from the specified project. This cloud service provider manages the private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -41709,7 +41709,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41722,9 +41725,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns the name, interfaces, and state of the specified private endpoint service from one project. The cloud service provider hosted this private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpointService @@ -41772,7 +41772,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41785,9 +41788,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: post: description: Creates one private endpoint for the specified cloud service provider. This cloud service provider manages the private endpoint service, which in turn manages the private endpoints for the project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations, limitations, and prerequisites, see the MongoDB documentation for setting up a private endpoint. @@ -41847,7 +41847,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41864,9 +41867,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}: delete: description: Removes one private endpoint from the specified project and private endpoint service, as managed by the specified cloud service provider. When the last private endpoint is removed from a given private endpoint service, that private endpoint service is also removed. To use this resource, the requesting API Key must have the Project Owner role. @@ -41920,7 +41920,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41933,9 +41936,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns the connection state of the specified private endpoint. The private endpoint service manages this private endpoint which belongs to one project hosted from one cloud service provider. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpoint @@ -41990,7 +41990,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42003,9 +42006,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: post: description: Creates one private endpoint service for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. When you create a private endpoint service, MongoDB Cloud creates a network container in the project for the cloud provider for which you create the private endpoint service if one doesn't already exist. To learn more about private endpoint terminology in MongoDB Cloud, see Private Endpoint Concepts. To use this resource, the requesting API Key must have the Project Owner role. @@ -42042,7 +42042,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42059,9 +42062,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpointService --help /api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode: get: description: Checks whether each region in the specified cloud service provider can create multiple private endpoints per region. The cloud service provider manages the private endpoint for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42090,7 +42090,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42103,9 +42106,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Enables or disables the ability to create multiple private endpoints per region in all cloud service providers in one project. The cloud service provider manages the private endpoints for the project. Connection strings to existing multi-region and global sharded clusters change when you enable this setting. You must update your applications to use the new connection strings. This might cause downtime. To use this resource, the requesting API Key must have the Project Owner role and all clusters in the deployment must be sharded clusters. Once enabled, you cannot create replica sets. operationId: toggleRegionalizedPrivateEndpointSetting @@ -42140,7 +42140,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42157,9 +42160,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint: get: description: Returns all private endpoints for one serverless instance. You must have at least the Project Read Only role for the project to successfully call this resource. @@ -42197,7 +42197,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42210,9 +42213,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: |- Creates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -42260,7 +42260,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42277,9 +42280,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}: delete: description: Remove one private endpoint from one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -42324,7 +42324,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42337,9 +42340,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Return one private endpoint for one serverless instance. Identify this endpoint using its unique ID. You must have at least the Project Read Only role for the project to successfully call this resource. operationId: getServerlessPrivateEndpoint @@ -42383,7 +42383,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42396,9 +42399,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessPrivateEndpoint @@ -42449,7 +42449,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42466,9 +42469,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateIpMode: get: deprecated: true @@ -42499,7 +42499,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42512,9 +42515,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help patch: deprecated: true description: Disables Connect via Peering Only mode for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -42553,7 +42553,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disablePeering --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42570,9 +42573,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api disablePeering --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds: get: description: Returns all private endpoints for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. @@ -42606,7 +42606,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDataFederationPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42619,9 +42622,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: |- Adds one private endpoint for Federated Database Instances and Online Archives to the specified projects. If the endpoint ID already exists and the associated comment is unchanged, Atlas Data Federation makes no change to the endpoint ID list. If the endpoint ID already exists and the associated comment is changed, Atlas Data Federation updates the comment value only in the endpoint ID list. If the endpoint ID doesn't exist, Atlas Data Federation appends the new endpoint to the list of endpoints in the endpoint ID list. Each region has an associated service name for the various endpoints in each region. @@ -42675,7 +42675,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42692,9 +42695,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}: delete: description: Removes one private endpoint for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -42732,7 +42732,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42745,9 +42748,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help get: description: Returns the specified private endpoint for Federated Database Instances or Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getDataFederationPrivateEndpoint @@ -42786,7 +42786,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42799,9 +42802,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes: get: description: Returns details of all processes for the specified project. A MongoDB process can be either a `mongod` or `mongos`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42831,7 +42831,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasProcesses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42844,9 +42847,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAtlasProcesses --help /api/atlas/v2/groups/{groupId}/processes/{processId}: get: description: Returns the processes for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42881,7 +42881,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42894,9 +42897,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: get: description: Returns the list of databases running on the specified host for the specified project. `M0` free clusters, `M2`, `M5`, and serverless clusters have some [operational limits](https://www.mongodb.com/docs/atlas/reference/free-shared-limitations/#operational-limitations). The MongoDB Cloud process must be a `mongod`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42934,7 +42934,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42947,9 +42950,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: get: description: Returns one database running on the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42990,7 +42990,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43003,9 +43006,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: get: description: Returns the measurements of one database for the specified host for the specified project. Returns the database's on-disk storage space based on the MongoDB `dbStats` command output. To calculate some metric series, Atlas takes the rate between every two adjacent points. For these metric series, the first data point has a null value because Atlas can't calculate a rate for the first data point given the query time range. Atlas retrieves database metrics every 20 minutes but reduces frequency when necessary to optimize database performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43072,7 +43072,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43085,9 +43088,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: get: description: Returns the list of disks or partitions for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43125,7 +43125,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskPartitions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43138,9 +43141,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: get: description: Returns measurement details for one disk or partition for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43180,7 +43180,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43193,9 +43196,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: get: description: |- @@ -43278,7 +43278,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43291,9 +43294,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: get: description: |- @@ -43487,7 +43487,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43500,9 +43503,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: get: description: Returns up to 20 namespaces for collections experiencing slow queries on the specified host. If you specify a secondary member of a replica set that hasn't received any database read operations, the endpoint doesn't return any namespaces. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43557,7 +43557,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueryNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43570,9 +43573,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: get: description: Returns log lines for slow queries that the Performance Advisor and Query Profiler identified. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. MongoDB Cloud bases the threshold for slow queries on the average time of operations on your cluster. This enables workload-relevant recommendations. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -43644,7 +43644,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43655,11 +43658,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -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 + --header "Accept: application/vnd.atlas.2023-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: get: description: Returns the indexes that the Performance Advisor suggests. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43738,7 +43738,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSuggestedIndexes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43751,9 +43754,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pushBasedLogExport: delete: description: Disables the push-based log export feature by resetting the project level settings to its default configuration. @@ -43784,7 +43784,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43797,9 +43800,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - - label: Atlas CLI - lang: cURL - source: atlas api deletePushBasedLogConfiguration --help get: description: Fetches the current project level settings for the push-based log export feature. operationId: getPushBasedLogConfiguration @@ -43829,7 +43829,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43842,9 +43845,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getPushBasedLogConfiguration --help patch: description: Updates the project level settings for the push-based log export feature. operationId: updatePushBasedLogConfiguration @@ -43882,7 +43882,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43899,9 +43902,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePushBasedLogConfiguration --help post: description: Configures the project level settings for the push-based log export feature. operationId: createPushBasedLogConfiguration @@ -43939,7 +43939,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43956,9 +43959,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushBasedLogConfiguration --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}: post: description: Requests loading the MongoDB sample dataset into the specified cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -43997,7 +43997,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api loadSampleDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44014,9 +44017,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api loadSampleDataset --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}: get: description: Checks the progress of loading the sample dataset into one cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -44051,7 +44051,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSampleDatasetLoadStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44064,9 +44067,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless: get: description: Returns details for all serverless instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44096,7 +44096,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44109,9 +44112,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServerlessInstances --help post: description: Creates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessInstance @@ -44148,7 +44148,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44165,9 +44168,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessInstance --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs: get: description: Returns all restore jobs for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -44208,7 +44208,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44221,9 +44224,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Restores one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessBackupRestoreJob @@ -44271,7 +44271,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44288,9 +44291,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}: get: description: Returns one restore job for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -44337,7 +44337,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44350,9 +44353,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: get: description: Returns all snapshots of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44393,7 +44393,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44406,9 +44409,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: get: description: Returns one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44455,7 +44455,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44468,9 +44471,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: get: description: Get whether the Serverless Auto Indexing feature is enabled. @@ -44506,7 +44506,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44519,9 +44522,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Set whether the Serverless Auto Indexing feature is enabled. operationId: setServerlessAutoIndexing @@ -44561,7 +44561,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44578,9 +44581,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setServerlessAutoIndexing --help /api/atlas/v2/groups/{groupId}/serverless/{name}: delete: description: Removes one serverless instance from the specified project. The serverless instance must have termination protection disabled in order to be deleted. To use this resource, the requesting API Key must have the Project Owner role. @@ -44620,7 +44620,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44633,9 +44636,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServerlessInstance --help get: description: Returns details for one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getServerlessInstance @@ -44674,7 +44674,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44687,9 +44690,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessInstance @@ -44733,7 +44733,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44750,9 +44753,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessInstance --help /api/atlas/v2/groups/{groupId}/settings: get: description: Returns details about the specified project's settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44783,7 +44783,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44796,9 +44799,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectSettings --help patch: description: Updates the settings of the specified project. You can update any of the options available. MongoDB cloud only updates the options provided in the request. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProjectSettings @@ -44835,7 +44835,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44852,9 +44855,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectSettings --help /api/atlas/v2/groups/{groupId}/teams: get: description: Returns all teams to which the authenticated user has access in the project specified using its unique 24-hexadecimal digit identifier. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44890,7 +44890,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44903,9 +44906,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectTeams --help post: description: Adds one team to the specified project. All members of the team share the same project access. MongoDB Cloud limits the number of users to a maximum of 100 teams per project and a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -44949,7 +44949,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addAllTeamsToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44966,9 +44969,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addAllTeamsToProject --help /api/atlas/v2/groups/{groupId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the project specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Project Owner role. @@ -45010,7 +45010,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45023,9 +45026,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectTeam --help patch: description: Updates the project roles assigned to the specified team. You can grant team roles for specific projects and grant project access roles to users in the team. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -45076,7 +45076,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateTeamRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45093,9 +45096,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateTeamRoles --help /api/atlas/v2/groups/{groupId}/userSecurity: get: description: Returns the current LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45122,7 +45122,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45135,9 +45138,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getLDAPConfiguration --help patch: description: |- Edits the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45175,7 +45175,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api saveLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45192,9 +45195,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api saveLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/customerX509: delete: description: |- @@ -45223,7 +45223,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableCustomerManagedX509 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45236,9 +45239,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - - label: Atlas CLI - lang: cURL - source: atlas api disableCustomerManagedX509 --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: delete: description: Removes the current LDAP Distinguished Name mapping captured in the ``userToDNMapping`` document from the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45265,7 +45265,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45278,9 +45281,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: post: description: Verifies the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45316,7 +45316,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45333,9 +45336,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api verifyLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}: get: description: Returns the status of one request to verify one LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45371,7 +45371,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfigurationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45384,9 +45387,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/users: get: description: Returns details about all users in the specified project. Users belong to an organization. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45428,7 +45428,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45441,9 +45444,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectUsers --help /api/atlas/v2/groups/{groupId}/users/{userId}: delete: description: Removes the specified user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45481,7 +45481,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45494,9 +45497,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectUser --help /api/atlas/v2/groups/{groupId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified project. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified project. To use this resource, the requesting API Key must have the Group User Admin role. @@ -45543,7 +45543,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45560,9 +45563,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectRoles --help /api/atlas/v2/groups/byName/{groupName}: get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45602,7 +45602,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45615,9 +45618,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectByName --help /api/atlas/v2/orgs: get: description: Returns all organizations to which the requesting API Key has access. To use this resource, the requesting API Key must have the Organization Member role. @@ -45657,7 +45657,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45670,9 +45673,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizations --help post: description: Creates one organization in MongoDB Cloud and links it to the requesting API Key's organization. To use this resource, the requesting API Key must have the Organization Owner role. The requesting API Key's organization must be a paying organization. To learn more, see [Configure a Paying Organization](https://www.mongodb.com/docs/atlas/billing/#configure-a-paying-organization) in the MongoDB Atlas documentation. operationId: createOrganization @@ -45712,7 +45712,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45729,9 +45732,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganization --help /api/atlas/v2/orgs/{orgId}: delete: description: |- @@ -45770,7 +45770,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45783,9 +45786,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganization --help get: description: Returns one organization to which the requesting API key has access. To use this resource, the requesting API Key must have the Organization Member role. operationId: getOrganization @@ -45817,7 +45817,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45830,9 +45833,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganization --help patch: description: Renames one organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: renameOrganization @@ -45871,7 +45871,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45888,9 +45891,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameOrganization --help /api/atlas/v2/orgs/{orgId}/apiKeys: get: description: Returns all organization API keys for the specified organization. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the console. To use this resource, the requesting API Key must have the Organization Member role. @@ -45923,7 +45923,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45936,9 +45939,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listApiKeys --help post: description: Creates one API key for the specified organization. An organization API key grants programmatic access to an organization. You can't use the API key to log into the console. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -45974,7 +45974,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45991,9 +45994,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified organization. When you remove an API key from an organization, MongoDB Cloud also removes that key from any projects that use that key. To use this resource, the requesting API Key must have the Organization Owner role. @@ -46032,7 +46032,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46045,9 +46048,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteApiKey --help get: description: Returns one organization API key. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the user interface. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -46085,7 +46085,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46098,9 +46101,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates one organization API key in the specified organization. The organization API keys grant programmatic access to an organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -46147,7 +46147,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46164,9 +46167,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList: get: description: Returns all access list entries that you configured for the specified organization API key. To use this resource, the requesting API Key must have the Organization Member role. @@ -46208,7 +46208,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeyAccessListsEntries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46221,9 +46224,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Creates the access list entries for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. operationId: createApiKeyAccessList @@ -46274,7 +46274,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46291,9 +46294,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKeyAccessList --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}: delete: description: Removes the specified access list entry from the specified organization API key. Resources require all API requests originate from the IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. In addition, you cannot remove the requesting IP address from the requesting organization API key. @@ -46344,7 +46344,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKeyAccessListEntry --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46357,9 +46360,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 get: description: Returns one access list entry for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -46407,7 +46407,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46420,9 +46423,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: post: description: Creates a query process within the Cost Explorer for the given parameters. A token is returned that can be used to poll the status of the query and eventually retrieve the results. @@ -46457,7 +46457,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46474,9 +46477,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCostExplorerQueryProcess --help /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}: get: description: Returns the usage details for a Cost Explorer query, if the query is finished and the data is ready to be viewed. If the data is not ready, a 'processing' response willindicate that another request should be sent later to view the data. @@ -46521,7 +46521,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess_1 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46534,9 +46537,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/events: get: description: |- @@ -46598,7 +46598,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46611,9 +46614,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationEvents --help /api/atlas/v2/orgs/{orgId}/events/{eventId}: get: description: |- @@ -46660,7 +46660,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46673,9 +46676,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/federationSettings: get: description: Returns information about the federation settings for the specified organization. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. @@ -46706,7 +46706,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46719,9 +46722,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getFederationSettings --help /api/atlas/v2/orgs/{orgId}/groups: get: description: |- @@ -46768,7 +46768,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46781,9 +46784,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationProjects --help /api/atlas/v2/orgs/{orgId}/invites: get: description: Returns all pending invitations to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. @@ -46822,7 +46822,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46835,9 +46838,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationInvitations --help patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the username of the invited user. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitation @@ -46874,7 +46874,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46891,9 +46894,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitation --help post: description: Invites one MongoDB Cloud user to join the specified organization. The user must accept the invitation to access information within the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createOrganizationInvitation @@ -46930,7 +46930,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46947,9 +46950,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganizationInvitation --help /api/atlas/v2/orgs/{orgId}/invites/{invitationId}: delete: description: Cancels one pending invitation sent to the specified MongoDB Cloud user to join an organization. You can't cancel an invitation that the user accepted. To use this resource, the requesting API Key must have the Organization Owner role. @@ -46986,7 +46986,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46999,9 +47002,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganizationInvitation --help get: description: Returns the details of one pending invitation to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getOrganizationInvitation @@ -47039,7 +47039,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47052,9 +47055,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the unique identification string for that invitation. Use the Return All Organization Invitations endpoint to retrieve IDs for all pending organization invitations. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitationById @@ -47100,7 +47100,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47117,9 +47120,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitationById --help /api/atlas/v2/orgs/{orgId}/invoices: get: description: |- @@ -47210,7 +47210,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47223,9 +47226,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listInvoices --help /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: get: description: |- @@ -47269,7 +47269,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getInvoice --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47282,9 +47285,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: get: description: |- @@ -47329,7 +47329,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadInvoiceCSV --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47342,9 +47345,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/pending: get: description: Returns all invoices accruing charges for the current billing cycle for the specified organization. To use this resource, the requesting API Key must have the Organization Billing Viewer, Organization Billing Admin, or Organization Owner role. If you have a cross-organization setup, you can view linked invoices if you have the Organization Billing Admin or Organization Owner Role. @@ -47373,7 +47373,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPendingInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47386,9 +47389,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: get: description: Return all projects that you can migrate to the specified organization. @@ -47419,7 +47419,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSourceProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47432,9 +47435,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: delete: description: Remove one organization link and its associated public API key. MongoDB Atlas uses the link-token for push live migrations only. Live migrations (push) let you securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. @@ -47462,7 +47462,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47475,9 +47478,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLinkToken --help post: description: Create one link-token that contains all the information required to complete the link. MongoDB Atlas uses the link-token for push live migrations only. Live migration (push) allows you to securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. operationId: createLinkToken @@ -47512,7 +47512,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47529,9 +47532,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLinkToken --help /api/atlas/v2/orgs/{orgId}/settings: get: description: Returns details about the specified organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. @@ -47562,7 +47562,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47575,9 +47578,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganizationSettings --help patch: description: Updates the organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationSettings @@ -47614,7 +47614,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47631,9 +47634,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationSettings --help /api/atlas/v2/orgs/{orgId}/teams: get: description: Returns all teams that belong to the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud only returns teams for which you have access. To use this resource, the requesting API Key must have the Organization Member role. @@ -47670,7 +47670,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47683,9 +47686,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationTeams --help post: description: Creates one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud limits the number of teams to a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -47727,7 +47727,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47744,9 +47747,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the organization specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Organization Owner role. @@ -47789,7 +47789,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47802,9 +47805,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteTeam --help get: description: Returns one team that you identified using its unique 24-hexadecimal digit ID. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -47846,7 +47846,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47859,9 +47862,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 patch: description: Renames one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -47912,7 +47912,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47929,9 +47932,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users: get: description: Returns all MongoDB Cloud users assigned to the team specified using its unique 24-hexadecimal digit identifier. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -47978,7 +47978,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listTeamUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47991,9 +47994,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 post: description: Adds one or more MongoDB Cloud users from the specified organization to the specified team. Teams enable you to grant project access roles to MongoDB Cloud users. You can assign up to 250 MongoDB Cloud users from one organization to one team. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -48046,7 +48046,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48063,9 +48066,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addTeamUser --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified team. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. @@ -48115,7 +48115,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48128,9 +48131,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: get: description: Returns one team that you identified using its human-readable name. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -48170,7 +48170,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48183,9 +48186,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/users: get: description: Returns details about the MongoDB Cloud users associated with the specified organization. Each MongoDB Cloud user returned must belong to the specified organization or to a project within the specified organization. To use this resource, the requesting API Key must have the Organization Member role. @@ -48219,7 +48219,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48232,9 +48235,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationUsers --help /api/atlas/v2/orgs/{orgId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -48275,7 +48275,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeOrganizationUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48288,9 +48291,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeOrganizationUser --help /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified organization. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -48337,7 +48337,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48354,9 +48357,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationRoles --help /api/atlas/v2/users: post: description: |- @@ -48396,7 +48396,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48413,9 +48416,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createUser --help /api/atlas/v2/users/{userId}: get: description: Returns the details for one MongoDB Cloud user account with the specified unique identifier for the user. You can't use this endpoint to return information on an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. You can always retrieve your own user account. If you are the owner of a MongoDB Cloud organization or project, you can also retrieve the user profile for any user with membership in that organization or project. To use this resource, the requesting API Key can have any role. @@ -48452,7 +48452,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48465,9 +48468,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUser --help /api/atlas/v2/users/byName/{userName}: get: description: Returns the details for one MongoDB Cloud user account with the specified username. You can't use this endpoint to return information about an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. To use this resource, the requesting API Key can have any role. @@ -48502,7 +48502,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUserByUsername --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48515,9 +48518,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUserByUsername --help servers: - url: https://cloud.mongodb.com tags: 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 07c17bafb0..71da698ebc 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 @@ -246,18 +246,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getSystemStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -308,18 +308,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationMatchersFieldNames --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -376,18 +376,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listClustersForAllProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -444,18 +444,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listEventTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -503,18 +503,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederationApp --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -574,18 +574,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listConnectedOrgConfigs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -652,18 +652,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api removeConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -728,18 +728,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -815,18 +815,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" } ] } @@ -883,18 +883,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listRoleMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -960,18 +960,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" } ] } @@ -1038,18 +1038,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1117,18 +1117,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1207,18 +1207,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" } ] } @@ -1310,18 +1310,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIdentityProviders --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1389,18 +1389,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-01-01" @@ -1475,18 +1475,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-01-01" @@ -1541,18 +1541,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProviderMetadata --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1612,18 +1612,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1703,18 +1703,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" } ] } @@ -1782,18 +1782,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1847,18 +1847,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1910,18 +1910,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1990,18 +1990,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" } ] } @@ -2071,18 +2071,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addUserToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" } ] } @@ -2146,18 +2146,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectIpAccessLists --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2239,18 +2239,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" } ] } @@ -2319,18 +2319,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2400,18 +2400,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2482,18 +2482,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpAccessListStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2553,18 +2553,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2627,18 +2627,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" } ] } @@ -2702,18 +2702,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2778,18 +2778,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2865,18 +2865,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] }, @@ -2955,18 +2955,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] } @@ -3042,18 +3042,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertsByAlertConfigurationId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3129,18 +3129,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlerts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3206,18 +3206,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3296,18 +3296,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api acknowledgeAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -3383,18 +3383,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationsByAlertId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3458,18 +3458,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3529,18 +3529,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -3610,18 +3610,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -3705,18 +3705,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKeyRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] }, @@ -3791,18 +3791,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -3853,18 +3853,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3927,18 +3927,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" } ] } @@ -3989,18 +3989,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4060,18 +4060,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" } ] } @@ -4132,18 +4132,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listExportBuckets --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-05-30" @@ -4213,18 +4213,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -4292,18 +4292,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -4366,18 +4366,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-05-30" @@ -4433,18 +4433,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-01" @@ -4523,18 +4523,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-01" @@ -4586,18 +4586,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderAccessRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4661,18 +4661,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" } ] } @@ -4747,18 +4747,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deauthorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -4821,18 +4821,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4914,18 +4914,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api authorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" } ] } @@ -4995,18 +4995,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listClusters --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -5080,18 +5080,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -5171,18 +5171,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderRegions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -5256,18 +5256,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" } ] } @@ -5341,18 +5341,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedClusterToServerless --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" } ] } @@ -5429,18 +5429,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -5508,18 +5508,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api getCluster --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api getCluster --help" } ], "x-sunset": "2026-03-01" @@ -5602,18 +5602,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -5686,18 +5686,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupExportJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5775,18 +5775,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" } ] } @@ -5855,18 +5855,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -5938,18 +5938,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6030,18 +6030,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -6119,18 +6119,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api cancelBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -6203,18 +6203,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6278,18 +6278,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllBackupSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-08-05" @@ -6352,18 +6352,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-08-05" @@ -6440,18 +6440,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" } ], "x-sunset": "2025-08-05" @@ -6527,18 +6527,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listReplicaSetBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6613,18 +6613,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api takeSnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" } ] } @@ -6699,18 +6699,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -6786,18 +6786,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6863,18 +6863,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listShardedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6952,18 +6952,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -7039,18 +7039,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -7137,18 +7137,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateSnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -7234,18 +7234,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api downloadSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" } ] } @@ -7328,18 +7328,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" } ] } @@ -7405,18 +7405,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7494,18 +7494,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7571,18 +7571,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7660,18 +7660,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7744,18 +7744,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupCheckpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7837,18 +7837,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupCheckpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7933,18 +7933,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8034,18 +8034,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexesDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8129,18 +8129,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2025-06-01" @@ -8219,18 +8219,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8326,18 +8326,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8406,18 +8406,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -8486,18 +8486,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllCustomZoneMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -8578,18 +8578,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomZoneMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -8677,18 +8677,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -8772,18 +8772,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -8953,18 +8953,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRollingIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" } ] } @@ -9040,18 +9040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOnlineArchives --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9136,18 +9136,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" } ] } @@ -9250,18 +9250,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadOnlineArchiveQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -9343,18 +9343,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -9437,18 +9437,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9545,18 +9545,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" } ] } @@ -9629,18 +9629,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api endOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9711,18 +9711,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9801,18 +9801,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api startOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" } ] } @@ -9883,18 +9883,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -9979,18 +9979,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -10051,18 +10051,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api testFailover --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" } ] } @@ -10149,18 +10149,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10236,18 +10236,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" } ] } @@ -10326,18 +10326,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -10404,18 +10404,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -10481,18 +10481,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -10572,18 +10572,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -10663,18 +10663,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -10739,18 +10739,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10823,18 +10823,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" } ] } @@ -10921,18 +10921,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacySnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11011,18 +11011,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -11096,18 +11096,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11192,18 +11192,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -11266,18 +11266,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11388,18 +11388,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11477,18 +11477,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainerByCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11560,18 +11560,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" } ] } @@ -11631,18 +11631,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11715,18 +11715,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -11788,18 +11788,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11884,18 +11884,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" } ] } @@ -11949,18 +11949,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCustomDatabaseRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12032,18 +12032,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" } ] } @@ -12109,18 +12109,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12181,18 +12181,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12273,18 +12273,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" } ] } @@ -12351,18 +12351,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api listFederatedDatabases --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" } ] }, @@ -12431,18 +12431,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" } ] } @@ -12502,18 +12502,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12574,18 +12574,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12666,18 +12666,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" } ] } @@ -12743,18 +12743,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12826,18 +12826,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12910,18 +12910,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13008,18 +13008,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOneDataFederationQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -13109,18 +13109,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadFederatedDatabaseQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13180,18 +13180,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13415,18 +13415,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" } ] } @@ -13502,18 +13502,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -13584,18 +13584,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13686,18 +13686,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" } ] } @@ -13769,18 +13769,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUserCertificates --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13866,18 +13866,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUserCertificate --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" } ] } @@ -13994,18 +13994,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByClusterName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14119,18 +14119,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByHostname --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14181,18 +14181,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14261,18 +14261,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" } ] } @@ -14335,18 +14335,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14418,18 +14418,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" } ] } @@ -14515,18 +14515,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14599,18 +14599,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14737,18 +14737,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14823,18 +14823,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14888,18 +14888,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listMetricTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14999,18 +14999,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15113,18 +15113,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15219,18 +15219,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15296,18 +15296,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listThirdPartyIntegrations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15386,18 +15386,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "Atlas CLI", + "source": "atlas api deleteThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -15474,18 +15474,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15585,18 +15585,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] }, @@ -15693,18 +15693,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] } @@ -15768,18 +15768,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -15847,18 +15847,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -15920,18 +15920,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -15993,18 +15993,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2024-10-04" @@ -16070,18 +16070,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -16158,18 +16158,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -16224,18 +16224,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnAllIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16298,18 +16298,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16390,18 +16390,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -16483,18 +16483,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -16587,18 +16587,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -16672,18 +16672,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -16758,18 +16758,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api validateMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -16840,18 +16840,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getValidationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16911,18 +16911,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16982,18 +16982,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api cutoverMigration --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" - }, - { - "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" } ] } @@ -17041,18 +17041,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "Atlas CLI", + "source": "atlas api resetMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17101,18 +17101,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17172,18 +17172,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" } ] } @@ -17231,18 +17231,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleMaintenanceAutoDefer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" } ] } @@ -17290,18 +17290,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api deferMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" } ] } @@ -17352,18 +17352,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedSlowMs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17414,18 +17414,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "Atlas CLI", + "source": "atlas api disableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17476,18 +17476,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api enableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" } ] } @@ -17599,18 +17599,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLTSVersions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17687,18 +17687,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17771,18 +17771,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" } ] } @@ -17848,18 +17848,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -17923,18 +17923,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18015,18 +18015,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" } ] } @@ -18080,18 +18080,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelines --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18154,18 +18154,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" } ] } @@ -18228,18 +18228,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -18303,18 +18303,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18392,18 +18392,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" } ] } @@ -18472,18 +18472,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18568,18 +18568,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18645,18 +18645,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pausePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" } ] } @@ -18722,18 +18722,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api resumePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" } ] } @@ -18818,18 +18818,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineRuns --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18908,18 +18908,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipelineRunDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -18996,18 +18996,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipelineRun --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19084,18 +19084,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api triggerSnapshotIngestion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" } ] } @@ -19161,18 +19161,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" } ] } @@ -19226,18 +19226,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19300,18 +19300,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" } ] } @@ -19376,18 +19376,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19462,18 +19462,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" } ] } @@ -19547,18 +19547,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -19630,18 +19630,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19724,18 +19724,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" } ] } @@ -19804,18 +19804,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPrivateEndpointServices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19893,18 +19893,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -19983,18 +19983,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20092,18 +20092,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" } ] } @@ -20191,18 +20191,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20291,18 +20291,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20358,18 +20358,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20437,18 +20437,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api disablePeering --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" } ] } @@ -20514,18 +20514,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDataFederationPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20588,18 +20588,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" } ] } @@ -20665,18 +20665,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20743,18 +20743,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20814,18 +20814,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasProcesses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20887,18 +20887,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20969,18 +20969,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21051,18 +21051,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21172,18 +21172,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21254,18 +21254,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskPartitions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21333,18 +21333,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21463,18 +21463,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21700,18 +21700,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21791,18 +21791,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueryNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21906,18 +21906,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22037,18 +22037,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSuggestedIndexes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22105,18 +22105,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "Atlas CLI", + "source": "atlas api deletePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22171,18 +22171,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22249,18 +22249,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] }, @@ -22327,18 +22327,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] } @@ -22404,18 +22404,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api loadSampleDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" } ] } @@ -22475,18 +22475,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSampleDatasetLoadStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22546,18 +22546,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22623,18 +22623,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" } ] } @@ -22709,18 +22709,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22801,18 +22801,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -22890,18 +22890,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22976,18 +22976,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23063,18 +23063,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23137,18 +23137,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23215,18 +23215,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" } ] } @@ -23295,18 +23295,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -23373,18 +23373,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23459,18 +23459,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api updateServerlessInstance --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" - }, - { - "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" } ] } @@ -23527,18 +23527,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23604,18 +23604,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" } ] } @@ -23672,18 +23672,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23746,18 +23746,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" } ] } @@ -23823,18 +23823,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -23903,18 +23903,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23992,18 +23992,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" } ] } @@ -24096,18 +24096,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadStreamTenantAuditLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24176,18 +24176,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24262,18 +24262,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" } ] } @@ -24348,18 +24348,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -24426,18 +24426,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24524,18 +24524,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" } ] } @@ -24604,18 +24604,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24691,18 +24691,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addAllTeamsToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" } ] } @@ -24772,18 +24772,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -24868,18 +24868,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateTeamRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -24930,18 +24930,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25004,18 +25004,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api saveLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" } ] } @@ -25063,18 +25063,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "Atlas CLI", + "source": "atlas api disableCustomerManagedX509 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25125,18 +25125,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25201,18 +25201,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api verifyLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" } ] } @@ -25275,18 +25275,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfigurationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25364,18 +25364,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25441,18 +25441,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -25532,18 +25532,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -25617,18 +25617,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25697,18 +25697,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" } ] } @@ -25768,18 +25768,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25837,18 +25837,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25917,18 +25917,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" } ] } @@ -25992,18 +25992,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26067,18 +26067,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -26145,18 +26145,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -26221,18 +26221,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26311,18 +26311,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -26398,18 +26398,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeyAccessListsEntries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26499,18 +26499,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" } ] } @@ -26594,18 +26594,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKeyAccessListEntry --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -26684,18 +26684,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26757,18 +26757,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" } ] } @@ -26843,18 +26843,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess_1 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26953,18 +26953,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27039,18 +27039,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27107,18 +27107,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27192,18 +27192,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27272,18 +27272,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27349,18 +27349,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] }, @@ -27426,18 +27426,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] } @@ -27503,18 +27503,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27578,18 +27578,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api getOrganizationInvitation --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" } ] }, @@ -27667,18 +27667,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" } ] } @@ -27820,18 +27820,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27885,18 +27885,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPendingInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27968,18 +27968,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getInvoice --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28044,18 +28044,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadInvoiceCSV --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28112,18 +28112,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSourceProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28174,18 +28174,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "Atlas CLI", + "source": "atlas api deleteLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28248,18 +28248,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" } ] } @@ -28316,18 +28316,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28393,18 +28393,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" } ] } @@ -28474,18 +28474,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28558,18 +28558,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" } ] } @@ -28639,18 +28639,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28723,18 +28723,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -28805,18 +28805,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28901,18 +28901,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -28994,18 +28994,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listTeamUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29093,18 +29093,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" } ] } @@ -29186,18 +29186,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api removeTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -29263,18 +29263,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -29343,18 +29343,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeOrganizationUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -29434,18 +29434,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -29507,18 +29507,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" } ] } @@ -29579,18 +29579,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getUserByUsername --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -29653,18 +29653,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUser --help" + "label": "curl (Digest)", + "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\"" } ] } 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 2edeb84287..75e558fde1 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 @@ -28657,7 +28657,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSystemStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28670,9 +28673,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getSystemStatus --help /api/atlas/v2/alertConfigs/matchers/fieldNames: get: description: Get all field names that the `matchers.fieldName` parameter accepts when you create or update an Alert Configuration. You can successfully call this endpoint with any assigned role. @@ -28700,7 +28700,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationMatchersFieldNames --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28713,9 +28716,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help /api/atlas/v2/clusters: get: description: Returns the details for all clusters in all projects to which you have access. Clusters contain a group of hosts that maintain the same data set. The response does not include multi-cloud clusters. To use this resource, the requesting API Key can have any cluster-level role. @@ -28744,7 +28744,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClustersForAllProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28757,9 +28760,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClustersForAllProjects --help /api/atlas/v2/eventTypes: get: description: Returns a list of all event types, along with a description and additional metadata about each event. @@ -28788,7 +28788,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listEventTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28801,9 +28804,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listEventTypes --help /api/atlas/v2/federationSettings/{federationSettingsId}: delete: description: 'Deletes the federation settings instance and all associated data, including identity providers and domains. To use this resource, the requesting API Key must have the Organization Owner role in the last remaining connected organization. **Note**: requests to this resource will fail if there is more than one connected organization in the federation.' @@ -28830,7 +28830,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederationApp --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28843,9 +28846,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederationApp --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: get: description: Returns all connected org configs in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected orgs. @@ -28877,7 +28877,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listConnectedOrgConfigs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28890,9 +28893,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listConnectedOrgConfigs --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: delete: description: 'Removes one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. Note: This request fails if only one connected organization exists in the federation.' @@ -28932,7 +28932,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28945,9 +28948,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeConnectedOrgConfig --help get: description: Returns the specified connected org config from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. operationId: getConnectedOrgConfig @@ -28986,7 +28986,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -28999,9 +29002,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: "Updates one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. \n\n**Note** If the organization configuration has no associated identity provider, you can't use this resource to update role mappings or post authorization role grants. \n\n**Note**: The domainRestrictionEnabled field defaults to false if not provided in the request. \n\n**Note**: If the identityProviderId field is not provided, you will disconnect the organization and the identity provider. \n\n**Note**: Currently connected data access identity providers missing from the dataAccessIdentityProviderIds field will be disconnected." operationId: updateConnectedOrgConfig @@ -29047,7 +29047,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29064,9 +29067,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateConnectedOrgConfig --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings: get: description: Returns all role mappings from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -29097,7 +29097,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listRoleMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29110,9 +29113,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Adds one role mapping to the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createRoleMapping @@ -29149,7 +29149,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29166,9 +29169,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}: delete: description: Removes one role mapping in the specified organization from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -29207,7 +29207,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29220,9 +29223,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns one role mapping from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getRoleMapping @@ -29262,7 +29262,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29275,9 +29278,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 put: description: Updates one role mapping in the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateRoleMapping @@ -29324,7 +29324,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29341,9 +29344,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders: get: description: Returns all identity providers with the provided protocol and type in the specified federation. If no protocol is specified, only SAML identity providers will be returned. If no idpType is specified, only WORKFORCE identity providers will be returned. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -29397,7 +29397,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIdentityProviders --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29410,9 +29413,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listIdentityProviders --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}: get: deprecated: true @@ -29452,7 +29452,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29465,9 +29468,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2025-01-01" patch: deprecated: true @@ -29515,7 +29515,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29532,9 +29535,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateIdentityProvider --help x-sunset: "2025-01-01" /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: get: @@ -29565,7 +29565,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProviderMetadata --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29578,9 +29581,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups: get: description: Returns details about all projects. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Organization Read Only role or higher. @@ -29611,7 +29611,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29624,9 +29627,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjects --help post: description: Creates one project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Read Write role. operationId: createProject @@ -29674,7 +29674,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29691,9 +29694,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProject --help /api/atlas/v2/groups/{groupId}: delete: description: Removes the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. You can delete a project only if there are no Online Archives for the clusters in the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -29722,7 +29722,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29735,9 +29738,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProject --help get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProject @@ -29765,7 +29765,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29778,9 +29781,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProject --help patch: description: Updates the human-readable label that identifies the specified project, or the tags associated with the project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProject @@ -29819,7 +29819,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29836,9 +29839,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProject --help /api/atlas/v2/groups/{groupId}/access: post: description: Adds one MongoDB Cloud user to the specified project. If the MongoDB Cloud user is not a member of the project's organization, then the user must accept their invitation to the organization to access information within the specified project. If the MongoDB Cloud User is already a member of the project's organization, then they will be added to the project immediately and an invitation will not be returned by this resource. To use this resource, the requesting API Key must have the Group User Admin role. @@ -29877,7 +29877,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addUserToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29894,9 +29897,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addUserToProject --help /api/atlas/v2/groups/{groupId}/accessList: get: description: Returns all access list entries from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -29929,7 +29929,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectIpAccessLists --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29942,9 +29945,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectIpAccessLists --help post: description: Adds one or more access list entries to the specified project. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. Write each entry as either one IP address or one CIDR-notated block of IP addresses. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. This endpoint doesn't support concurrent `POST` requests. You must submit multiple `POST` requests synchronously. externalDocs: @@ -29989,7 +29989,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30006,9 +30009,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectIpAccessList --help /api/atlas/v2/groups/{groupId}/accessList/{entryValue}: delete: description: Removes one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains one IP address, one CIDR-notated block of IP addresses, or one AWS Security Group ID. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Owner role. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -30053,7 +30053,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30066,9 +30069,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectIpAccessList --help get: description: Returns one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. This endpoint (`/groups/{GROUP-ID}/accessList`) manages the Project IP Access List. It doesn't manage the access list for MongoDB Cloud organizations. TheProgrammatic API Keys endpoint (`/orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist`) manages those access lists. externalDocs: @@ -30109,7 +30109,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30122,9 +30125,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: get: description: Returns the status of one project IP access list entry. This resource checks if the provided project IP access list entry applies to all cloud providers serving clusters from the specified project. @@ -30165,7 +30165,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpAccessListStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30178,9 +30181,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/alertConfigs: get: description: |- @@ -30213,7 +30213,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30226,9 +30229,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurations --help post: description: |- Creates one alert configuration for the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -30266,7 +30266,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30283,9 +30286,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}: delete: description: |- @@ -30325,7 +30325,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30338,9 +30341,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteAlertConfiguration --help get: description: |- Returns the specified alert configuration from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -30381,7 +30381,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30394,9 +30397,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: |- Enables or disables the specified alert configuration in the specified project. The resource enables the specified alert configuration if currently enabled. The resource disables the specified alert configuration if currently disabled. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -30446,7 +30446,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30463,9 +30466,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAlertConfiguration --help put: description: |- Updates one alert configuration in the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -30517,7 +30517,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30534,9 +30537,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts: get: description: |- @@ -30581,7 +30581,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertsByAlertConfigurationId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30594,9 +30597,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/alerts: get: description: |- @@ -30640,7 +30640,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlerts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30653,9 +30656,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlerts --help /api/atlas/v2/groups/{groupId}/alerts/{alertId}: get: description: |- @@ -30696,7 +30696,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30709,9 +30712,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: deprecated: true description: |- @@ -30761,7 +30761,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api acknowledgeAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30778,9 +30781,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api acknowledgeAlert --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs: get: @@ -30825,7 +30825,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationsByAlertId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30838,9 +30841,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/apiKeys: get: description: Returns all organization API keys that you assigned to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. @@ -30873,7 +30873,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30886,9 +30889,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectApiKeys --help post: description: Creates and assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: createProjectApiKey @@ -30921,7 +30921,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30938,9 +30941,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectApiKey --help /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -30981,7 +30981,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30994,9 +30997,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectApiKey --help patch: description: Updates the roles of the organization API key that you specify for the project that you specify. You must specify at least one valid role for the project. The application removes any roles that you do not include in this request if they were previously set in the organization API key that you specify for the project. operationId: updateApiKeyRoles @@ -31043,7 +31043,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKeyRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31060,9 +31063,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKeyRoles --help post: description: Assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can then use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: addProjectApiKey @@ -31106,7 +31106,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31123,9 +31126,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectApiKey --help /api/atlas/v2/groups/{groupId}/auditLog: get: description: Returns the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. @@ -31152,7 +31152,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31165,9 +31168,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAuditingConfiguration --help patch: description: Updates the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. operationId: updateAuditingConfiguration @@ -31202,7 +31202,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31219,9 +31222,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAuditingConfiguration --help /api/atlas/v2/groups/{groupId}/awsCustomDNS: get: description: Returns the custom DNS configuration for AWS clusters in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -31248,7 +31248,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31261,9 +31264,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAWSCustomDNS --help patch: description: Enables or disables the custom DNS configuration for AWS clusters in the specified project. Enable custom DNS if you use AWS VPC peering and use your own DNS servers. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: toggleAWSCustomDNS @@ -31296,7 +31296,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31313,9 +31316,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAWSCustomDNS --help /api/atlas/v2/groups/{groupId}/backup/exportBuckets: get: deprecated: true @@ -31346,7 +31346,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listExportBuckets --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31359,9 +31362,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2025-05-30" post: deprecated: true @@ -31402,7 +31402,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31419,9 +31422,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createExportBucket --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}: delete: @@ -31462,7 +31462,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31475,9 +31478,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteExportBucket --help get: deprecated: true description: Returns one AWS S3 Bucket or Azure Blob Storage Container associated with the specified Project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -31515,7 +31515,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31528,9 +31531,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/backupCompliancePolicy: get: @@ -31561,7 +31561,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31572,11 +31575,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getDataProtectionSettings --help + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" x-sunset: "2024-10-01" put: deprecated: true @@ -31623,7 +31623,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31640,9 +31643,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDataProtectionSettings --help x-sunset: "2024-10-01" /api/atlas/v2/groups/{groupId}/cloudProviderAccess: get: @@ -31670,7 +31670,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderAccessRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31683,9 +31686,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listCloudProviderAccessRoles --help post: description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -31721,7 +31721,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31738,9 +31741,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}: delete: description: Revokes access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. @@ -31784,7 +31784,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deauthorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31797,9 +31800,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - - label: Atlas CLI - lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: get: description: Returns the access role with the specified id and with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -31835,7 +31835,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31848,9 +31851,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Grants access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. This API endpoint is one step in a procedure to create unified access for MongoDB Cloud services. externalDocs: @@ -31899,7 +31899,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api authorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31916,9 +31919,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/clusters: get: deprecated: true @@ -31955,7 +31955,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClusters --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31968,9 +31971,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClusters --help x-sunset: "2026-03-01" post: deprecated: true @@ -32013,7 +32013,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32030,9 +32033,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCluster --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}: delete: @@ -32078,7 +32078,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32091,9 +32094,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCluster --help get: deprecated: true description: 'Returns the details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. The response includes clusters with asymmetrically-sized shards. To use this resource, the requesting API Key must have the Project Read Only role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-01-01}' @@ -32133,7 +32133,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32146,9 +32149,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -32198,7 +32198,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32215,9 +32218,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCluster --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: get: @@ -32257,7 +32257,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupExportJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32270,9 +32273,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Exports one backup snapshot for dedicated Atlas cluster using Cloud Backups to an Export Bucket. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: createBackupExportJob @@ -32319,7 +32319,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32336,9 +32339,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupExportJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}: get: description: Returns one Cloud Backup snapshot export job associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -32379,7 +32379,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32392,9 +32395,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: get: description: Returns all cloud backup restore jobs for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32433,7 +32433,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32446,9 +32449,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: |- Restores one snapshot of one cluster from the specified project. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -32499,7 +32499,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32516,9 +32519,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}: delete: description: Cancels one cloud backup restore job of one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32565,7 +32565,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cancelBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32578,9 +32581,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns one cloud backup restore job for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: getBackupRestoreJob @@ -32624,7 +32624,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32637,9 +32640,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: delete: deprecated: true @@ -32677,7 +32677,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllBackupSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32690,9 +32693,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2025-08-05" get: deprecated: true @@ -32729,7 +32729,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32742,9 +32745,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2025-08-05" patch: deprecated: true @@ -32793,7 +32793,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32810,9 +32813,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateBackupSchedule --help x-sunset: "2025-08-05" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots: get: @@ -32854,7 +32854,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listReplicaSetBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32867,9 +32870,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: |- Takes one on-demand snapshot for the specified cluster. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -32916,7 +32916,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api takeSnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32933,9 +32936,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api takeSnapshot --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}: delete: description: Removes the specified snapshot. To use this resource, the requesting API Key must have the Project Owner role. @@ -32982,7 +32982,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32995,9 +32998,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns one snapshot from the specified cluster. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getReplicaSetBackup @@ -33043,7 +33043,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33056,9 +33059,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Changes the expiration date for one cloud backup snapshot for one cluster in the specified project. operationId: updateSnapshotRetention @@ -33111,7 +33111,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateSnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33128,9 +33131,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateSnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}: delete: description: Removes one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33175,7 +33175,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33188,9 +33191,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getShardedClusterBackup @@ -33236,7 +33236,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33249,9 +33252,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: get: description: Returns all snapshots of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33289,7 +33289,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listShardedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33302,9 +33305,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: post: description: Requests one snapshot for the specified shared cluster. This resource returns a `snapshotURL` that you can use to download the snapshot. This `snapshotURL` remains active for four hours after you make the request. To use this resource, the requesting API Key must have the Project Owner role. @@ -33355,7 +33355,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33372,9 +33375,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api downloadSharedClusterBackup --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore: post: description: Restores the specified cluster. MongoDB Cloud limits which clusters can be the target clusters of a restore. The target cluster can't use encryption at rest, run a major release MongoDB version different than the snapshot, or receive client requests during restores. MongoDB Cloud deletes all existing data on the target cluster prior to the restore operation. To use this resource, the requesting API Key must have the Project Owner role. @@ -33423,7 +33423,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33440,9 +33443,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores: get: description: Returns all restore jobs for the specified M2 or M5 cluster. Restore jobs restore a cluster using a snapshot. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33480,7 +33480,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33493,9 +33496,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: get: description: Returns the specified restore job. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33542,7 +33542,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33555,9 +33558,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: get: description: Returns details for all snapshots for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33595,7 +33595,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33608,9 +33611,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: get: description: Returns details for one snapshot for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33657,7 +33657,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33670,9 +33673,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: get: deprecated: true @@ -33712,7 +33712,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupCheckpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33725,9 +33728,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: get: deprecated: true @@ -33777,7 +33777,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupCheckpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33790,9 +33793,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes: post: deprecated: true @@ -33843,7 +33843,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33860,9 +33863,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}: get: @@ -33917,7 +33917,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexesDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33930,9 +33933,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}: delete: @@ -33984,7 +33984,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33997,9 +34000,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2025-06-01" get: deprecated: true @@ -34048,7 +34048,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34061,9 +34064,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2025-06-01" patch: deprecated: true @@ -34123,7 +34123,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34138,11 +34141,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ - -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ + -d '{ }' x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites: get: @@ -34183,7 +34183,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34196,9 +34199,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping: delete: @@ -34239,7 +34239,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllCustomZoneMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34252,9 +34255,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2026-03-01" post: deprecated: true @@ -34303,7 +34303,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomZoneMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34320,9 +34323,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomZoneMapping --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces: delete: @@ -34375,7 +34375,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34388,9 +34391,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2026-03-01" post: deprecated: true @@ -34441,7 +34441,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34458,9 +34461,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createManagedNamespace --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index: post: @@ -34572,7 +34572,10 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRollingIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34589,9 +34592,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRollingIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives: get: description: Returns details of all online archives. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34633,7 +34633,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOnlineArchives --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34646,9 +34649,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Creates one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -34699,7 +34699,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34716,9 +34719,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}: delete: description: Removes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. @@ -34768,7 +34768,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34781,9 +34784,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns one online archive for one cluster. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. externalDocs: @@ -34834,7 +34834,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34847,9 +34850,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates, pauses, or resumes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -34909,7 +34909,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34926,9 +34929,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz: get: description: 'Downloads query logs for the specified online archive. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -34994,7 +34994,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadOnlineArchiveQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35007,9 +35010,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation: delete: description: Ends a cluster outage simulation. @@ -35052,7 +35052,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api endOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35065,9 +35068,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - - label: Atlas CLI - lang: cURL - source: atlas api endOutageSimulation --help get: description: Returns one outage simulation for one cluster. externalDocs: @@ -35109,7 +35109,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35122,9 +35125,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Starts a cluster outage simulation. externalDocs: @@ -35171,7 +35171,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api startOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35188,9 +35191,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api startOutageSimulation --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs: get: deprecated: true @@ -35232,7 +35232,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35245,9 +35248,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -35299,7 +35299,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35316,9 +35319,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries: post: @@ -35353,7 +35353,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api testFailover --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35370,9 +35373,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api testFailover --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs: get: deprecated: true @@ -35425,7 +35425,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35438,9 +35441,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: deprecated: true description: Restores one legacy backup for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). This endpoint doesn't support creating checkpoint restore jobs for sharded clusters, or creating restore jobs for queryable backup snapshots. If you create an automated restore job by specifying `delivery.methodName` of `AUTOMATED_RESTORE` in your request body, MongoDB Cloud removes all existing data on the target cluster prior to the restore. @@ -35485,7 +35485,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35502,9 +35505,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLegacyBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}: get: deprecated: true @@ -35555,7 +35555,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35568,9 +35571,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: delete: deprecated: true @@ -35609,7 +35609,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35622,9 +35625,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2026-03-01" get: deprecated: true @@ -35663,7 +35663,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35676,9 +35679,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -35726,7 +35726,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35743,9 +35746,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchDeployment --help x-sunset: "2026-03-01" post: deprecated: true @@ -35793,7 +35793,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35810,9 +35813,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchDeployment --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule: get: @@ -35853,7 +35853,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35866,9 +35869,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: deprecated: true description: |- @@ -35914,7 +35914,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35931,9 +35934,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotSchedule --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots: get: deprecated: true @@ -35983,7 +35983,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacySnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35996,9 +35999,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: delete: deprecated: true @@ -36046,7 +36046,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36059,9 +36062,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: deprecated: true description: Returns one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -36106,7 +36106,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36119,9 +36122,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: deprecated: true description: Changes the expiration date for one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -36173,7 +36173,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36190,9 +36193,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status: get: description: Returns the status of all changes that you made to the specified cluster in the specified project. Use this resource to check the progress MongoDB Cloud has made in processing your changes. The response does not include the deployment of new dedicated clusters. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36228,7 +36228,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36241,9 +36244,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: get: description: 'Returns a compressed (.gz) log file that contains a range of log messages for the specified host for the specified project. MongoDB updates process and audit logs from the cluster backend infrastructure every five minutes and contain log data from the previous five minutes. If you poll the API for log files, we recommend polling every five minutes. For example, if the logs are updated at 4:00 UTC and then you poll the API, the API returns log data from the interval between 3:55 UTC and 4:00 UTC. This feature isn''t available for `M0` free clusters, `M2`, `M5`, or serverless clusters. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip". Deprecated versions: v2-{2023-01-01}' @@ -36314,7 +36314,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36327,9 +36330,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/provider/regions: get: description: Returns the list of regions available for the specified cloud provider at the specified tier. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36371,7 +36371,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderRegions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36384,9 +36387,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: post: description: Upgrades a shared-tier cluster in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. Each project supports up to 25 clusters. @@ -36428,7 +36428,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36445,9 +36448,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedCluster --help /api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless: post: description: Upgrades a shared-tier cluster to a serverless instance in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. @@ -36489,7 +36489,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedClusterToServerless --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36506,9 +36509,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedClusterToServerless --help /api/atlas/v2/groups/{groupId}/containers: get: description: Returns details about all network peering containers in the specified project for the specified cloud provider. If you do not specify the cloud provider, MongoDB Cloud returns details about all network peering containers in the project for Amazon Web Services (AWS). To use this resource, the requesting API Key must have the Project Read Only role. @@ -36551,7 +36551,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainerByCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36564,9 +36567,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help post: description: Creates one new network peering container in the specified project. MongoDB Cloud can deploy Network Peering connections in a network peering container. GCP can have one container per project. AWS and Azure can have one container per cloud provider region. To use this resource, the requesting API Key must have the Project Owner role. operationId: createPeeringContainer @@ -36607,7 +36607,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36624,9 +36627,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/{containerId}: delete: description: Removes one network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -36669,7 +36669,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36682,9 +36685,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringContainer --help get: description: Returns details about one network peering container in one specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringContainer @@ -36720,7 +36720,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36733,9 +36736,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates the network details and labels of one specified network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringContainer @@ -36786,7 +36786,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36803,9 +36806,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/all: get: description: Returns details about all network peering containers in the specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36835,7 +36835,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36846,11 +36849,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -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 + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" /api/atlas/v2/groups/{groupId}/customDBRoles/roles: get: description: Returns all custom roles for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36879,7 +36879,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCustomDatabaseRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36892,9 +36895,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Creates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createCustomDatabaseRole @@ -36935,7 +36935,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36952,9 +36955,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}: delete: description: Removes one custom role from the specified project. You can't remove a custom role that would leave one or more child roles with no parent roles or actions. You also can't remove a custom role that would leave one or more database users without roles. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -36991,7 +36991,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37004,9 +37007,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCustomDatabaseRole --help get: description: Returns one custom role for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getCustomDatabaseRole @@ -37040,7 +37040,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37053,9 +37056,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateCustomDatabaseRole @@ -37102,7 +37102,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37119,9 +37122,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/dataFederation: get: description: Returns the details of all federated database instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only or higher role. @@ -37159,7 +37159,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listFederatedDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37172,9 +37175,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listFederatedDatabases --help post: description: Creates one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createFederatedDatabase @@ -37213,7 +37213,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37230,9 +37233,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}: delete: description: Removes one federated database instance from the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. @@ -37265,7 +37265,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37278,9 +37281,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederatedDatabase --help get: description: Returns the details of one federated database instance within the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getFederatedDatabase @@ -37315,7 +37315,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37328,9 +37331,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates the details of one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or higher role. operationId: updateFederatedDatabase @@ -37377,7 +37377,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37394,9 +37397,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits: get: description: Returns query limits for a federated databases instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37433,7 +37433,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37446,9 +37449,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: delete: description: Deletes one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -37499,7 +37499,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOneDataFederationInstanceQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37512,9 +37515,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns the details of one query limit for the specified federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: returnFederatedDatabaseQueryLimit @@ -37565,7 +37565,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37578,9 +37581,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Creates or updates one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: createOneDataFederationQueryLimit @@ -37641,7 +37641,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOneDataFederationQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37658,9 +37661,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOneDataFederationQueryLimit --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz: get: description: 'Downloads the query logs for the specified federated database instance. To use this resource, the requesting API Key must have the Project Owner or Project Data Access Read Write roles. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -37717,7 +37717,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadFederatedDatabaseQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37730,9 +37733,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/databaseUsers: get: description: Returns all database users that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37762,7 +37762,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37775,9 +37778,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listDatabaseUsers --help post: description: Creates one database user in the specified project. This MongoDB Cloud supports a maximum of 100 database users per project. If you require more than 100 database users on a project, contact [Support](https://cloud.mongodb.com/support). To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createDatabaseUser @@ -37909,7 +37909,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37926,9 +37929,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}: delete: description: Removes one database user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -37985,7 +37985,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37998,9 +38001,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDatabaseUser --help get: description: Returns one database user that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getDatabaseUser @@ -38054,7 +38054,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38067,9 +38070,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates one database user that belongs to the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: updateDatabaseUser @@ -38136,7 +38136,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38153,9 +38156,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs: get: description: Returns all unexpired X.509 certificates for the specified MongoDB user. This MongoDB user belongs to one project. Atlas manages these certificates and the MongoDB user. To use this resource, the requesting API Key must have the Project Read Only role. @@ -38193,7 +38193,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUserCertificates --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38206,9 +38209,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: |- Generates one X.509 certificate for the specified MongoDB user. Atlas manages the certificate and MongoDB user that belong to one project. To use this resource, the requesting API Key must have the Project Owner role. @@ -38264,7 +38264,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUserCertificate --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38281,9 +38284,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUserCertificate --help /api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}: get: description: Returns the access logs of one cluster identified by the cluster's name. Access logs contain a list of authentication requests made against your cluster. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -38356,7 +38356,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByClusterName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38369,9 +38372,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: get: description: Returns the access logs of one cluster identified by the cluster's hostname. Access logs contain a list of authentication requests made against your clusters. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -38441,7 +38441,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByHostname --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38454,9 +38457,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/encryptionAtRest: get: description: |- @@ -38486,7 +38486,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38499,9 +38502,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getEncryptionAtRest --help patch: description: |- Updates the configuration for encryption at rest using the keys you manage through your cloud provider. MongoDB Cloud encrypts all storage even if you don't use your own key management. This resource requires the requesting API Key to have the Project Owner role. This feature isn't available for `M0` free clusters, `M2`, `M5`, or serverless clusters. @@ -38552,7 +38552,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38569,9 +38572,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateEncryptionAtRest --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints: get: description: Returns the private endpoints of the specified cloud provider for encryption at rest using customer key management. @@ -38606,7 +38606,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38619,9 +38622,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Creates a private endpoint in the specified region for encryption at rest using customer key management. operationId: createEncryptionAtRestPrivateEndpoint @@ -38662,7 +38662,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38679,9 +38682,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}: delete: description: Deletes one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. @@ -38732,7 +38732,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38745,9 +38748,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. operationId: getEncryptionAtRestPrivateEndpoint @@ -38790,7 +38790,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38803,9 +38806,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/events: get: description: |- @@ -38889,7 +38889,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38902,9 +38905,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectEvents --help /api/atlas/v2/groups/{groupId}/events/{eventId}: get: description: |- @@ -38951,7 +38951,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38964,9 +38967,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: get: description: Returns all Atlas Search metric types available for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -38995,7 +38995,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listMetricTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39008,9 +39011,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: get: description: Returns the Atlas Search metrics data series within the provided time range for one namespace and index name on the specified process. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -39069,7 +39069,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39082,9 +39085,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: get: description: Returns the Atlas Search index metrics within the specified time range for one namespace in the specified process. @@ -39142,7 +39142,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39155,9 +39158,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: get: description: Returns the Atlas Search hardware and status data series within the provided time range for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -39214,7 +39214,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39227,9 +39230,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/integrations: get: description: Returns the settings that permit integrations with all configured third-party services. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -39263,7 +39263,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listThirdPartyIntegrations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39276,9 +39279,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listThirdPartyIntegrations --help /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: delete: description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -39327,7 +39327,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39340,9 +39343,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteThirdPartyIntegration --help get: description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: getThirdPartyIntegration @@ -39390,7 +39390,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39403,9 +39406,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: createThirdPartyIntegration @@ -39465,7 +39465,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39482,9 +39485,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createThirdPartyIntegration --help put: description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: updateThirdPartyIntegration @@ -39542,7 +39542,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39559,9 +39562,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateThirdPartyIntegration --help /api/atlas/v2/groups/{groupId}/invites: get: deprecated: true @@ -39597,7 +39597,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39608,11 +39611,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectInvitations --help + --header "Accept: application/vnd.atlas.2023-02-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" x-sunset: "2024-10-04" patch: deprecated: true @@ -39651,7 +39651,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39668,9 +39671,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitation --help x-sunset: "2024-10-04" post: deprecated: true @@ -39705,7 +39705,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39722,9 +39725,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectInvitation --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/invites/{invitationId}: delete: @@ -39761,7 +39761,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39774,9 +39777,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectInvitation --help x-sunset: "2024-10-04" get: deprecated: true @@ -39815,7 +39815,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39828,9 +39831,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 x-sunset: "2024-10-04" patch: deprecated: true @@ -39877,7 +39877,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39894,9 +39897,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitationById --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/ipAddresses: get: @@ -39926,7 +39926,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39939,9 +39942,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllIPAddresses --help /api/atlas/v2/groups/{groupId}/limits: get: description: Returns all the limits for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39976,7 +39976,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39989,9 +39992,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectLimits --help /api/atlas/v2/groups/{groupId}/limits/{limitName}: delete: description: Removes the specified project limit. Depending on the limit, Atlas either resets the limit to its default value or removes the limit entirely. To use this resource, the requesting API Key must have the Project Owner role. @@ -40058,7 +40058,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40071,9 +40074,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectLimit --help get: description: Returns the specified limit for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProjectLimit @@ -40141,7 +40141,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40154,9 +40157,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: |- Sets the specified project limit. To use this resource, the requesting API Key must have the Project Owner role. @@ -40234,7 +40234,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40251,9 +40254,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setProjectLimit --help /api/atlas/v2/groups/{groupId}/liveMigrations: post: deprecated: true @@ -40303,7 +40303,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40320,9 +40323,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushMigration --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}: get: @@ -40355,7 +40355,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40368,9 +40371,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: put: description: Cut over the migrated cluster to MongoDB Atlas. Confirm when the cut over completes. When the cut over completes, MongoDB Atlas completes the live migration process and stops synchronizing with the source cluster. Your API Key must have the Organization Owner role to successfully call this resource. @@ -40402,7 +40402,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cutoverMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40419,9 +40422,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api cutoverMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/validate: post: deprecated: true @@ -40464,7 +40464,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api validateMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40481,9 +40484,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api validateMigration --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}: get: @@ -40526,7 +40526,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getValidationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40539,9 +40542,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/maintenanceWindow: delete: description: Resets the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -40567,7 +40567,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resetMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40580,9 +40583,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - - label: Atlas CLI - lang: cURL - source: atlas api resetMaintenanceWindow --help get: description: Returns the maintenance window for the specified project. MongoDB Cloud starts those maintenance activities when needed. You can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: getMaintenanceWindow @@ -40608,7 +40608,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40621,9 +40624,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getMaintenanceWindow --help patch: description: Updates the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateMaintenanceWindow @@ -40657,7 +40657,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40674,9 +40677,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer: post: description: Toggles automatic deferral of the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -40702,7 +40702,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleMaintenanceAutoDefer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40719,9 +40722,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/defer: post: description: Defers the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -40747,7 +40747,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deferMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40764,9 +40767,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api deferMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/managedSlowMs: get: description: Get whether the Managed Slow MS feature is enabled. @@ -40793,7 +40793,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedSlowMs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40806,9 +40809,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getManagedSlowMs --help /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: delete: description: Disables the slow operation threshold that MongoDB Cloud calculated for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -40835,7 +40835,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40848,9 +40851,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - - label: Atlas CLI - lang: cURL - source: atlas api disableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: post: description: Enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -40877,7 +40877,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api enableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40894,9 +40897,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api enableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/mongoDBVersions: get: description: Returns the MongoDB Long Term Support Major Versions available to new clusters in this project. @@ -40964,7 +40964,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLTSVersions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40977,9 +40980,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectLTSVersions --help /api/atlas/v2/groups/{groupId}/peers: get: description: Returns details about all network peering connections in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41021,7 +41021,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41034,9 +41037,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringConnections --help post: description: Creates one new network peering connection in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations and prerequisites, see the Network Peering Documentation. externalDocs: @@ -41078,7 +41078,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41095,9 +41098,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringConnection --help /api/atlas/v2/groups/{groupId}/peers/{peerId}: delete: description: Removes one network peering connection in the specified project. If you Removes the last network peering connection associated with a project, MongoDB Cloud also removes any AWS security groups from the project IP access list. To use this resource, the requesting API Key must have the Project Owner role. @@ -41135,7 +41135,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41148,9 +41151,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringConnection --help get: description: Returns details about one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringConnection @@ -41187,7 +41187,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41200,9 +41203,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringConnection @@ -41250,7 +41250,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41267,9 +41270,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringConnection --help /api/atlas/v2/groups/{groupId}/pipelines: get: description: Returns a list of Data Lake Pipelines. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41299,7 +41299,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelines --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41312,9 +41315,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPipelines --help post: description: Creates one Data Lake Pipeline. operationId: createPipeline @@ -41350,7 +41350,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41367,9 +41370,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}: delete: description: Removes one Data Lake Pipeline. @@ -41406,7 +41406,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41419,9 +41422,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePipeline --help get: description: Returns the details of one Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipeline @@ -41458,7 +41458,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41471,9 +41474,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates one Data Lake Pipeline. operationId: updatePipeline @@ -41520,7 +41520,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41537,9 +41540,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules: get: description: Returns a list of backup schedule policy items that you can use as a Data Lake Pipeline source. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41579,7 +41579,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41592,9 +41595,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: get: description: Returns a list of backup snapshots that you can use to trigger an on demand pipeline run. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41642,7 +41642,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41655,9 +41658,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: post: description: Pauses ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41695,7 +41695,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pausePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41712,9 +41715,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pausePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume: post: description: Resumes ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41752,7 +41752,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resumePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41769,9 +41772,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api resumePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs: get: description: Returns a list of past Data Lake Pipeline runs. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41819,7 +41819,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineRuns --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41832,9 +41835,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: delete: description: Deletes dataset that Atlas generated during the specified pipeline run. @@ -41882,7 +41882,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipelineRunDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41895,9 +41898,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns the details of one Data Lake Pipeline run within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipelineRun @@ -41944,7 +41944,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipelineRun --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41957,9 +41960,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: post: description: Triggers a Data Lake Pipeline ingestion of a specified snapshot. @@ -42004,7 +42004,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api triggerSnapshotIngestion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42019,11 +42022,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ - -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api triggerSnapshotIngestion --help + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService: get: description: Returns the name, interfaces, and state of all private endpoint services for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42063,7 +42063,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPrivateEndpointServices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42076,9 +42079,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: delete: description: Removes one private endpoint service from the specified project. This cloud service provider manages the private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -42125,7 +42125,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42138,9 +42141,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns the name, interfaces, and state of the specified private endpoint service from one project. The cloud service provider hosted this private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpointService @@ -42188,7 +42188,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42201,9 +42204,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: post: description: Creates one private endpoint for the specified cloud service provider. This cloud service provider manages the private endpoint service, which in turn manages the private endpoints for the project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations, limitations, and prerequisites, see the MongoDB documentation for setting up a private endpoint. @@ -42263,7 +42263,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42280,9 +42283,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}: delete: description: Removes one private endpoint from the specified project and private endpoint service, as managed by the specified cloud service provider. When the last private endpoint is removed from a given private endpoint service, that private endpoint service is also removed. To use this resource, the requesting API Key must have the Project Owner role. @@ -42336,7 +42336,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42349,9 +42352,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns the connection state of the specified private endpoint. The private endpoint service manages this private endpoint which belongs to one project hosted from one cloud service provider. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpoint @@ -42406,7 +42406,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42419,9 +42422,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: post: description: Creates one private endpoint service for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. When you create a private endpoint service, MongoDB Cloud creates a network container in the project for the cloud provider for which you create the private endpoint service if one doesn't already exist. To learn more about private endpoint terminology in MongoDB Cloud, see Private Endpoint Concepts. To use this resource, the requesting API Key must have the Project Owner role. @@ -42458,7 +42458,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42475,9 +42478,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpointService --help /api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode: get: description: Checks whether each region in the specified cloud service provider can create multiple private endpoints per region. The cloud service provider manages the private endpoint for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42506,7 +42506,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42519,9 +42522,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Enables or disables the ability to create multiple private endpoints per region in all cloud service providers in one project. The cloud service provider manages the private endpoints for the project. Connection strings to existing multi-region and global sharded clusters change when you enable this setting. You must update your applications to use the new connection strings. This might cause downtime. To use this resource, the requesting API Key must have the Project Owner role and all clusters in the deployment must be sharded clusters. Once enabled, you cannot create replica sets. operationId: toggleRegionalizedPrivateEndpointSetting @@ -42556,7 +42556,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42573,9 +42576,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint: get: description: Returns all private endpoints for one serverless instance. You must have at least the Project Read Only role for the project to successfully call this resource. @@ -42613,7 +42613,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42626,9 +42629,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: |- Creates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -42676,7 +42676,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42693,9 +42696,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}: delete: description: Remove one private endpoint from one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -42740,7 +42740,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42753,9 +42756,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Return one private endpoint for one serverless instance. Identify this endpoint using its unique ID. You must have at least the Project Read Only role for the project to successfully call this resource. operationId: getServerlessPrivateEndpoint @@ -42799,7 +42799,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42812,9 +42815,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessPrivateEndpoint @@ -42865,7 +42865,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42882,9 +42885,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateIpMode: get: deprecated: true @@ -42915,7 +42915,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42928,9 +42931,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help patch: deprecated: true description: Disables Connect via Peering Only mode for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -42969,7 +42969,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disablePeering --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42986,9 +42989,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api disablePeering --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds: get: description: Returns all private endpoints for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. @@ -43022,7 +43022,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDataFederationPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43035,9 +43038,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: |- Adds one private endpoint for Federated Database Instances and Online Archives to the specified projects. If the endpoint ID already exists and the associated comment is unchanged, Atlas Data Federation makes no change to the endpoint ID list. If the endpoint ID already exists and the associated comment is changed, Atlas Data Federation updates the comment value only in the endpoint ID list. If the endpoint ID doesn't exist, Atlas Data Federation appends the new endpoint to the list of endpoints in the endpoint ID list. Each region has an associated service name for the various endpoints in each region. @@ -43091,7 +43091,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43108,9 +43111,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}: delete: description: Removes one private endpoint for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -43148,7 +43148,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43161,9 +43164,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help get: description: Returns the specified private endpoint for Federated Database Instances or Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getDataFederationPrivateEndpoint @@ -43202,7 +43202,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43215,9 +43218,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes: get: description: Returns details of all processes for the specified project. A MongoDB process can be either a `mongod` or `mongos`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43247,7 +43247,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasProcesses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43260,9 +43263,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAtlasProcesses --help /api/atlas/v2/groups/{groupId}/processes/{processId}: get: description: Returns the processes for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43297,7 +43297,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43310,9 +43313,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: get: description: Returns the list of databases running on the specified host for the specified project. `M0` free clusters, `M2`, `M5`, and serverless clusters have some [operational limits](https://www.mongodb.com/docs/atlas/reference/free-shared-limitations/#operational-limitations). The MongoDB Cloud process must be a `mongod`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43350,7 +43350,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43363,9 +43366,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: get: description: Returns one database running on the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43406,7 +43406,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43419,9 +43422,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: get: description: Returns the measurements of one database for the specified host for the specified project. Returns the database's on-disk storage space based on the MongoDB `dbStats` command output. To calculate some metric series, Atlas takes the rate between every two adjacent points. For these metric series, the first data point has a null value because Atlas can't calculate a rate for the first data point given the query time range. Atlas retrieves database metrics every 20 minutes but reduces frequency when necessary to optimize database performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43488,7 +43488,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43501,9 +43504,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: get: description: Returns the list of disks or partitions for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43541,7 +43541,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskPartitions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43554,9 +43557,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: get: description: Returns measurement details for one disk or partition for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43596,7 +43596,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43609,9 +43612,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: get: description: |- @@ -43694,7 +43694,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43707,9 +43710,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: get: description: |- @@ -43903,7 +43903,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43916,9 +43919,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: get: description: Returns up to 20 namespaces for collections experiencing slow queries on the specified host. If you specify a secondary member of a replica set that hasn't received any database read operations, the endpoint doesn't return any namespaces. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43973,7 +43973,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueryNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43986,9 +43989,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: get: description: Returns log lines for slow queries that the Performance Advisor and Query Profiler identified. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. MongoDB Cloud bases the threshold for slow queries on the average time of operations on your cluster. This enables workload-relevant recommendations. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -44060,7 +44060,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44073,9 +44076,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: get: description: Returns the indexes that the Performance Advisor suggests. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44154,7 +44154,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSuggestedIndexes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44167,9 +44170,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pushBasedLogExport: delete: description: Disables the push-based log export feature by resetting the project level settings to its default configuration. @@ -44200,7 +44200,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44213,9 +44216,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - - label: Atlas CLI - lang: cURL - source: atlas api deletePushBasedLogConfiguration --help get: description: Fetches the current project level settings for the push-based log export feature. operationId: getPushBasedLogConfiguration @@ -44245,7 +44245,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44258,9 +44261,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getPushBasedLogConfiguration --help patch: description: Updates the project level settings for the push-based log export feature. operationId: updatePushBasedLogConfiguration @@ -44298,7 +44298,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44315,9 +44318,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePushBasedLogConfiguration --help post: description: Configures the project level settings for the push-based log export feature. operationId: createPushBasedLogConfiguration @@ -44355,7 +44355,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44372,9 +44375,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushBasedLogConfiguration --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}: post: description: Requests loading the MongoDB sample dataset into the specified cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -44413,7 +44413,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api loadSampleDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44430,9 +44433,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api loadSampleDataset --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}: get: description: Checks the progress of loading the sample dataset into one cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -44467,7 +44467,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSampleDatasetLoadStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44480,9 +44483,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless: get: description: Returns details for all serverless instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44512,7 +44512,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44525,9 +44528,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServerlessInstances --help post: description: Creates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessInstance @@ -44564,7 +44564,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44581,9 +44584,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessInstance --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs: get: description: Returns all restore jobs for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -44624,7 +44624,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44637,9 +44640,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Restores one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessBackupRestoreJob @@ -44687,7 +44687,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44702,11 +44705,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ - -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessBackupRestoreJob --help + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}: get: description: Returns one restore job for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -44753,7 +44753,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44766,9 +44769,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: get: description: Returns all snapshots of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44809,7 +44809,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44822,9 +44825,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: get: description: Returns one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44871,7 +44871,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44884,9 +44887,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: get: description: Get whether the Serverless Auto Indexing feature is enabled. @@ -44922,7 +44922,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44935,9 +44938,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Set whether the Serverless Auto Indexing feature is enabled. operationId: setServerlessAutoIndexing @@ -44977,7 +44977,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44994,9 +44997,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setServerlessAutoIndexing --help /api/atlas/v2/groups/{groupId}/serverless/{name}: delete: description: Removes one serverless instance from the specified project. The serverless instance must have termination protection disabled in order to be deleted. To use this resource, the requesting API Key must have the Project Owner role. @@ -45036,7 +45036,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45049,9 +45052,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServerlessInstance --help get: description: Returns details for one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getServerlessInstance @@ -45090,7 +45090,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45103,9 +45106,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessInstance @@ -45149,7 +45149,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45166,9 +45169,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessInstance --help /api/atlas/v2/groups/{groupId}/settings: get: description: Returns details about the specified project's settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45199,7 +45199,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45212,9 +45215,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectSettings --help patch: description: Updates the settings of the specified project. You can update any of the options available. MongoDB cloud only updates the options provided in the request. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProjectSettings @@ -45251,7 +45251,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45268,9 +45271,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectSettings --help /api/atlas/v2/groups/{groupId}/streams: get: description: Returns all stream instances for the specified project. @@ -45299,7 +45299,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45312,9 +45315,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listStreamInstances --help post: description: Creates one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: createStreamInstance @@ -45349,7 +45349,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45366,9 +45369,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}: delete: description: Delete one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. @@ -45405,7 +45405,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45418,9 +45421,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteStreamInstance --help get: description: Returns the details of one stream instance within the specified project. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. operationId: getStreamInstance @@ -45460,7 +45460,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45473,9 +45476,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Update one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: updateStreamInstance @@ -45520,7 +45520,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45537,9 +45540,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs: get: description: 'Downloads the audit logs for the specified Atlas Streams Processing instance. By default, logs cover periods of 30 days. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -45597,7 +45597,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadStreamTenantAuditLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45610,9 +45613,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections: get: description: Returns all connections of the stream instance for the specified project.To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. @@ -45649,7 +45649,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45662,9 +45665,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Creates one connection for a stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Stream Processing Owner role. operationId: createStreamConnection @@ -45707,7 +45707,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45724,9 +45727,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamConnection --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}: delete: description: Delete one connection of the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -45769,7 +45769,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45782,9 +45785,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns the details of one stream connection within the specified stream instance. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getStreamConnection @@ -45823,7 +45823,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45836,9 +45839,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Update one connection for the specified stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. operationId: updateStreamConnection @@ -45889,7 +45889,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45906,9 +45909,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamConnection --help /api/atlas/v2/groups/{groupId}/teams: get: description: Returns all teams to which the authenticated user has access in the project specified using its unique 24-hexadecimal digit identifier. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45944,7 +45944,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45957,9 +45960,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectTeams --help post: description: Adds one team to the specified project. All members of the team share the same project access. MongoDB Cloud limits the number of users to a maximum of 100 teams per project and a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -46003,7 +46003,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addAllTeamsToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46020,9 +46023,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addAllTeamsToProject --help /api/atlas/v2/groups/{groupId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the project specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Project Owner role. @@ -46064,7 +46064,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46077,9 +46080,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectTeam --help patch: description: Updates the project roles assigned to the specified team. You can grant team roles for specific projects and grant project access roles to users in the team. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -46130,7 +46130,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateTeamRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46147,9 +46150,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateTeamRoles --help /api/atlas/v2/groups/{groupId}/userSecurity: get: description: Returns the current LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46176,7 +46176,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46189,9 +46192,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getLDAPConfiguration --help patch: description: |- Edits the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46229,7 +46229,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api saveLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46246,9 +46249,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api saveLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/customerX509: delete: description: |- @@ -46277,7 +46277,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableCustomerManagedX509 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46290,9 +46293,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - - label: Atlas CLI - lang: cURL - source: atlas api disableCustomerManagedX509 --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: delete: description: Removes the current LDAP Distinguished Name mapping captured in the ``userToDNMapping`` document from the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46319,7 +46319,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46332,9 +46335,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: post: description: Verifies the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46370,7 +46370,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46387,9 +46390,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api verifyLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}: get: description: Returns the status of one request to verify one LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46425,7 +46425,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfigurationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46438,9 +46441,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/groups/{groupId}/users: get: description: Returns details about all users in the specified project. Users belong to an organization. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46482,7 +46482,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46495,9 +46498,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectUsers --help /api/atlas/v2/groups/{groupId}/users/{userId}: delete: description: Removes the specified user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46535,7 +46535,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46548,9 +46551,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectUser --help /api/atlas/v2/groups/{groupId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified project. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified project. To use this resource, the requesting API Key must have the Group User Admin role. @@ -46597,7 +46597,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46614,9 +46617,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectRoles --help /api/atlas/v2/groups/byName/{groupName}: get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46656,7 +46656,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46669,9 +46672,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectByName --help /api/atlas/v2/orgs: get: description: Returns all organizations to which the requesting API Key has access. To use this resource, the requesting API Key must have the Organization Member role. @@ -46711,7 +46711,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46724,9 +46727,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizations --help post: description: Creates one organization in MongoDB Cloud and links it to the requesting API Key's organization. To use this resource, the requesting API Key must have the Organization Owner role. The requesting API Key's organization must be a paying organization. To learn more, see [Configure a Paying Organization](https://www.mongodb.com/docs/atlas/billing/#configure-a-paying-organization) in the MongoDB Atlas documentation. operationId: createOrganization @@ -46766,7 +46766,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46783,9 +46786,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganization --help /api/atlas/v2/orgs/{orgId}: delete: description: |- @@ -46824,7 +46824,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46837,9 +46840,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganization --help get: description: Returns one organization to which the requesting API key has access. To use this resource, the requesting API Key must have the Organization Member role. operationId: getOrganization @@ -46871,7 +46871,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46884,9 +46887,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganization --help patch: description: Renames one organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: renameOrganization @@ -46925,7 +46925,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46942,9 +46945,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameOrganization --help /api/atlas/v2/orgs/{orgId}/apiKeys: get: description: Returns all organization API keys for the specified organization. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the console. To use this resource, the requesting API Key must have the Organization Member role. @@ -46977,7 +46977,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46990,9 +46993,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listApiKeys --help post: description: Creates one API key for the specified organization. An organization API key grants programmatic access to an organization. You can't use the API key to log into the console. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -47028,7 +47028,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47045,9 +47048,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified organization. When you remove an API key from an organization, MongoDB Cloud also removes that key from any projects that use that key. To use this resource, the requesting API Key must have the Organization Owner role. @@ -47086,7 +47086,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47099,9 +47102,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteApiKey --help get: description: Returns one organization API key. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the user interface. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -47139,7 +47139,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47152,9 +47155,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates one organization API key in the specified organization. The organization API keys grant programmatic access to an organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -47201,7 +47201,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47218,9 +47221,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList: get: description: Returns all access list entries that you configured for the specified organization API key. To use this resource, the requesting API Key must have the Organization Member role. @@ -47262,7 +47262,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeyAccessListsEntries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47275,9 +47278,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Creates the access list entries for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. operationId: createApiKeyAccessList @@ -47328,7 +47328,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47345,9 +47348,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKeyAccessList --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}: delete: description: Removes the specified access list entry from the specified organization API key. Resources require all API requests originate from the IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. In addition, you cannot remove the requesting IP address from the requesting organization API key. @@ -47398,7 +47398,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKeyAccessListEntry --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47411,9 +47414,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 get: description: Returns one access list entry for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -47461,7 +47461,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47474,9 +47477,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: post: description: Creates a query process within the Cost Explorer for the given parameters. A token is returned that can be used to poll the status of the query and eventually retrieve the results. @@ -47511,7 +47511,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47528,9 +47531,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCostExplorerQueryProcess --help /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}: get: description: Returns the usage details for a Cost Explorer query, if the query is finished and the data is ready to be viewed. If the data is not ready, a 'processing' response willindicate that another request should be sent later to view the data. @@ -47575,7 +47575,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess_1 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47588,9 +47591,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/events: get: description: |- @@ -47652,7 +47652,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47665,9 +47668,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationEvents --help /api/atlas/v2/orgs/{orgId}/events/{eventId}: get: description: |- @@ -47714,7 +47714,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47727,9 +47730,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/federationSettings: get: description: Returns information about the federation settings for the specified organization. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. @@ -47760,7 +47760,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47773,9 +47776,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getFederationSettings --help /api/atlas/v2/orgs/{orgId}/groups: get: description: |- @@ -47822,7 +47822,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47835,9 +47838,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationProjects --help /api/atlas/v2/orgs/{orgId}/invites: get: description: Returns all pending invitations to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. @@ -47876,7 +47876,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47889,9 +47892,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationInvitations --help patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the username of the invited user. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitation @@ -47928,7 +47928,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47945,9 +47948,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitation --help post: description: Invites one MongoDB Cloud user to join the specified organization. The user must accept the invitation to access information within the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createOrganizationInvitation @@ -47984,7 +47984,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48001,9 +48004,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganizationInvitation --help /api/atlas/v2/orgs/{orgId}/invites/{invitationId}: delete: description: Cancels one pending invitation sent to the specified MongoDB Cloud user to join an organization. You can't cancel an invitation that the user accepted. To use this resource, the requesting API Key must have the Organization Owner role. @@ -48040,7 +48040,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48053,9 +48056,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganizationInvitation --help get: description: Returns the details of one pending invitation to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getOrganizationInvitation @@ -48093,7 +48093,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48106,9 +48109,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the unique identification string for that invitation. Use the Return All Organization Invitations endpoint to retrieve IDs for all pending organization invitations. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitationById @@ -48154,7 +48154,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48171,9 +48174,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitationById --help /api/atlas/v2/orgs/{orgId}/invoices: get: description: |- @@ -48264,7 +48264,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48277,9 +48280,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listInvoices --help /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: get: description: |- @@ -48323,7 +48323,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getInvoice --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48336,9 +48339,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: get: description: |- @@ -48383,7 +48383,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadInvoiceCSV --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48396,9 +48399,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/pending: get: description: Returns all invoices accruing charges for the current billing cycle for the specified organization. To use this resource, the requesting API Key must have the Organization Billing Viewer, Organization Billing Admin, or Organization Owner role. If you have a cross-organization setup, you can view linked invoices if you have the Organization Billing Admin or Organization Owner Role. @@ -48427,7 +48427,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPendingInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48440,9 +48443,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: get: description: Return all projects that you can migrate to the specified organization. @@ -48473,7 +48473,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSourceProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48486,9 +48489,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: delete: description: Remove one organization link and its associated public API key. MongoDB Atlas uses the link-token for push live migrations only. Live migrations (push) let you securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. @@ -48516,7 +48516,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48529,9 +48532,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLinkToken --help post: description: Create one link-token that contains all the information required to complete the link. MongoDB Atlas uses the link-token for push live migrations only. Live migration (push) allows you to securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. operationId: createLinkToken @@ -48566,7 +48566,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48583,9 +48586,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLinkToken --help /api/atlas/v2/orgs/{orgId}/settings: get: description: Returns details about the specified organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. @@ -48616,7 +48616,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48629,9 +48632,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganizationSettings --help patch: description: Updates the organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationSettings @@ -48668,7 +48668,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48685,9 +48688,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationSettings --help /api/atlas/v2/orgs/{orgId}/teams: get: description: Returns all teams that belong to the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud only returns teams for which you have access. To use this resource, the requesting API Key must have the Organization Member role. @@ -48724,7 +48724,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48737,9 +48740,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationTeams --help post: description: Creates one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud limits the number of teams to a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -48781,7 +48781,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48798,9 +48801,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the organization specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Organization Owner role. @@ -48843,7 +48843,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48856,9 +48859,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteTeam --help get: description: Returns one team that you identified using its unique 24-hexadecimal digit ID. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -48900,7 +48900,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48913,9 +48916,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 patch: description: Renames one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -48966,7 +48966,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48983,9 +48986,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users: get: description: Returns all MongoDB Cloud users assigned to the team specified using its unique 24-hexadecimal digit identifier. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -49032,7 +49032,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listTeamUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49045,9 +49048,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 post: description: Adds one or more MongoDB Cloud users from the specified organization to the specified team. Teams enable you to grant project access roles to MongoDB Cloud users. You can assign up to 250 MongoDB Cloud users from one organization to one team. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -49100,7 +49100,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49117,9 +49120,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addTeamUser --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified team. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. @@ -49169,7 +49169,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49182,9 +49185,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: get: description: Returns one team that you identified using its human-readable name. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -49224,7 +49224,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49237,9 +49240,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/users: get: description: Returns details about the MongoDB Cloud users associated with the specified organization. Each MongoDB Cloud user returned must belong to the specified organization or to a project within the specified organization. To use this resource, the requesting API Key must have the Organization Member role. @@ -49273,7 +49273,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49286,9 +49289,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationUsers --help /api/atlas/v2/orgs/{orgId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -49329,7 +49329,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeOrganizationUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49342,9 +49345,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeOrganizationUser --help /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified organization. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -49391,7 +49391,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49408,9 +49411,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationRoles --help /api/atlas/v2/users: post: description: |- @@ -49450,7 +49450,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49467,9 +49470,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createUser --help /api/atlas/v2/users/{userId}: get: description: Returns the details for one MongoDB Cloud user account with the specified unique identifier for the user. You can't use this endpoint to return information on an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. You can always retrieve your own user account. If you are the owner of a MongoDB Cloud organization or project, you can also retrieve the user profile for any user with membership in that organization or project. To use this resource, the requesting API Key can have any role. @@ -49506,7 +49506,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49519,9 +49522,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUser --help /api/atlas/v2/users/byName/{userName}: get: description: Returns the details for one MongoDB Cloud user account with the specified username. You can't use this endpoint to return information about an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. To use this resource, the requesting API Key can have any role. @@ -49556,7 +49556,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUserByUsername --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49569,9 +49572,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUserByUsername --help servers: - url: https://cloud.mongodb.com tags: 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 489dd25be8..6b92679a51 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 @@ -246,18 +246,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getSystemStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -308,18 +308,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationMatchersFieldNames --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -376,18 +376,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listClustersForAllProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -444,18 +444,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listEventTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -503,18 +503,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederationApp --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -574,18 +574,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listConnectedOrgConfigs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -652,18 +652,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api removeConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -728,18 +728,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -815,18 +815,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" } ] } @@ -883,18 +883,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listRoleMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -960,18 +960,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" } ] } @@ -1038,18 +1038,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1117,18 +1117,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1207,18 +1207,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" } ] } @@ -1310,18 +1310,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIdentityProviders --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1389,18 +1389,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-01-01" @@ -1475,18 +1475,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-01-01" @@ -1541,18 +1541,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProviderMetadata --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1612,18 +1612,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1703,18 +1703,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" } ] } @@ -1782,18 +1782,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1847,18 +1847,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1910,18 +1910,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1990,18 +1990,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" } ] } @@ -2071,18 +2071,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addUserToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" } ] } @@ -2146,18 +2146,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectIpAccessLists --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2239,18 +2239,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" } ] } @@ -2319,18 +2319,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2400,18 +2400,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2482,18 +2482,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpAccessListStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2553,18 +2553,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurations --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" } ] }, @@ -2627,18 +2627,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" } ] } @@ -2702,18 +2702,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2778,18 +2778,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2865,18 +2865,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] }, @@ -2955,18 +2955,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] } @@ -3042,18 +3042,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertsByAlertConfigurationId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3129,18 +3129,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlerts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3206,18 +3206,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3296,18 +3296,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api acknowledgeAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -3383,18 +3383,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationsByAlertId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3458,18 +3458,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3529,18 +3529,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -3610,18 +3610,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -3705,18 +3705,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKeyRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] }, @@ -3791,18 +3791,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -3853,18 +3853,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3927,18 +3927,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" } ] } @@ -3989,18 +3989,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4060,18 +4060,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" } ] } @@ -4132,18 +4132,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listExportBuckets --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-05-30" @@ -4213,18 +4213,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -4292,18 +4292,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -4366,18 +4366,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-05-30" @@ -4432,18 +4432,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4519,18 +4519,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" } ] } @@ -4581,18 +4581,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderAccessRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4656,18 +4656,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" } ] } @@ -4742,18 +4742,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deauthorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -4816,18 +4816,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4909,18 +4909,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api authorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" } ] } @@ -4990,18 +4990,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listClusters --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -5075,18 +5075,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -5166,18 +5166,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderRegions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -5251,18 +5251,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" } ] } @@ -5336,18 +5336,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedClusterToServerless --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" } ] } @@ -5424,18 +5424,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -5503,18 +5503,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -5597,18 +5597,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -5681,18 +5681,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupExportJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5770,18 +5770,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" } ] } @@ -5850,18 +5850,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -5933,18 +5933,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6025,18 +6025,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -6114,18 +6114,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api cancelBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -6198,18 +6198,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6273,18 +6273,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllBackupSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-08-05" @@ -6347,18 +6347,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-08-05" @@ -6435,18 +6435,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" } ], "x-sunset": "2025-08-05" @@ -6522,18 +6522,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listReplicaSetBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6608,18 +6608,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api takeSnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" } ] } @@ -6694,18 +6694,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api deleteShardedClusterBackup --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" } ] }, @@ -6781,18 +6781,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6858,18 +6858,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listShardedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6947,18 +6947,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -7034,18 +7034,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -7132,18 +7132,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateSnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -7229,18 +7229,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api downloadSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" } ] } @@ -7323,18 +7323,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" } ] } @@ -7400,18 +7400,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7489,18 +7489,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7566,18 +7566,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7655,18 +7655,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7739,18 +7739,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupCheckpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7832,18 +7832,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupCheckpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7928,18 +7928,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8029,18 +8029,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexesDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8124,18 +8124,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2025-06-01" @@ -8214,18 +8214,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8321,18 +8321,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8401,18 +8401,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -8481,18 +8481,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllCustomZoneMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -8573,18 +8573,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomZoneMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -8672,18 +8672,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -8767,18 +8767,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -8948,18 +8948,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRollingIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" } ] } @@ -9035,18 +9035,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOnlineArchives --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9131,18 +9131,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" } ] } @@ -9245,18 +9245,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadOnlineArchiveQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -9338,18 +9338,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -9432,18 +9432,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9540,18 +9540,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" } ] } @@ -9624,18 +9624,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api endOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9706,18 +9706,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9796,18 +9796,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api startOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" } ] } @@ -9878,18 +9878,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -9974,18 +9974,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -10046,18 +10046,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api testFailover --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" } ] } @@ -10144,18 +10144,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10231,18 +10231,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" } ] } @@ -10321,18 +10321,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -10399,18 +10399,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -10476,18 +10476,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -10567,18 +10567,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -10658,18 +10658,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -10734,18 +10734,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10818,18 +10818,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" } ] } @@ -10916,18 +10916,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacySnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11006,18 +11006,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -11091,18 +11091,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11187,18 +11187,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -11261,18 +11261,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11383,18 +11383,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11472,18 +11472,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainerByCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11555,18 +11555,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" } ] } @@ -11626,18 +11626,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11710,18 +11710,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -11783,18 +11783,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11879,18 +11879,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" } ] } @@ -11944,18 +11944,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCustomDatabaseRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12027,18 +12027,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" } ] } @@ -12104,18 +12104,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12176,18 +12176,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12268,18 +12268,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" } ] } @@ -12346,18 +12346,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listFederatedDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12426,18 +12426,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" } ] } @@ -12497,18 +12497,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12569,18 +12569,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12661,18 +12661,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" } ] } @@ -12738,18 +12738,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12821,18 +12821,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12905,18 +12905,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13003,18 +13003,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOneDataFederationQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -13104,18 +13104,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadFederatedDatabaseQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13175,18 +13175,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13410,18 +13410,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" } ] } @@ -13497,18 +13497,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -13579,18 +13579,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13681,18 +13681,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api updateDatabaseUser --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" - }, - { - "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" } ] } @@ -13764,18 +13764,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUserCertificates --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13861,18 +13861,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUserCertificate --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" } ] } @@ -13989,18 +13989,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByClusterName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14114,18 +14114,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByHostname --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14176,18 +14176,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14256,18 +14256,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" } ] } @@ -14330,18 +14330,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14413,18 +14413,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" } ] } @@ -14510,18 +14510,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14594,18 +14594,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14732,18 +14732,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14818,18 +14818,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14883,18 +14883,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listMetricTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14994,18 +14994,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15108,18 +15108,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15214,18 +15214,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15291,18 +15291,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listThirdPartyIntegrations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15381,18 +15381,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "Atlas CLI", + "source": "atlas api deleteThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -15469,18 +15469,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15580,18 +15580,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] }, @@ -15688,18 +15688,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] } @@ -15763,18 +15763,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -15842,18 +15842,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -15915,18 +15915,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -15988,18 +15988,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2024-10-04" @@ -16065,18 +16065,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -16153,18 +16153,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -16219,18 +16219,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnAllIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16293,18 +16293,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16385,18 +16385,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -16478,18 +16478,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -16582,18 +16582,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -16667,18 +16667,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -16753,18 +16753,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api validateMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -16835,18 +16835,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getValidationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16906,18 +16906,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16977,18 +16977,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api cutoverMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" } ] } @@ -17036,18 +17036,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "Atlas CLI", + "source": "atlas api resetMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17096,18 +17096,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17167,18 +17167,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" } ] } @@ -17226,18 +17226,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleMaintenanceAutoDefer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" } ] } @@ -17285,18 +17285,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api deferMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" } ] } @@ -17347,18 +17347,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedSlowMs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17409,18 +17409,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "Atlas CLI", + "source": "atlas api disableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17471,18 +17471,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api enableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" } ] } @@ -17594,18 +17594,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLTSVersions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17682,18 +17682,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17766,18 +17766,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" } ] } @@ -17843,18 +17843,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -17918,18 +17918,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18010,18 +18010,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api updatePeeringConnection --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" - }, - { - "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" } ] } @@ -18075,18 +18075,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelines --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18149,18 +18149,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" } ] } @@ -18223,18 +18223,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -18298,18 +18298,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18387,18 +18387,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" } ] } @@ -18467,18 +18467,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18563,18 +18563,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18640,18 +18640,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pausePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" } ] } @@ -18717,18 +18717,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api resumePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" } ] } @@ -18813,18 +18813,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineRuns --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18903,18 +18903,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipelineRunDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -18991,18 +18991,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipelineRun --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19079,18 +19079,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api triggerSnapshotIngestion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" } ] } @@ -19156,18 +19156,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" } ] } @@ -19221,18 +19221,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19295,18 +19295,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" } ] } @@ -19371,18 +19371,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19457,18 +19457,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" } ] } @@ -19542,18 +19542,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -19625,18 +19625,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19719,18 +19719,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" } ] } @@ -19799,18 +19799,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPrivateEndpointServices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19888,18 +19888,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -19978,18 +19978,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20087,18 +20087,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" } ] } @@ -20186,18 +20186,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20286,18 +20286,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20353,18 +20353,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20432,18 +20432,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api disablePeering --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" } ] } @@ -20509,18 +20509,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDataFederationPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20583,18 +20583,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" } ] } @@ -20660,18 +20660,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20738,18 +20738,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20809,18 +20809,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasProcesses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20882,18 +20882,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20964,18 +20964,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21046,18 +21046,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21167,18 +21167,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21249,18 +21249,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskPartitions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21328,18 +21328,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21458,18 +21458,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21695,18 +21695,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21786,18 +21786,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueryNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21901,18 +21901,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22032,18 +22032,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSuggestedIndexes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22100,18 +22100,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "Atlas CLI", + "source": "atlas api deletePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22166,18 +22166,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22244,18 +22244,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] }, @@ -22322,18 +22322,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] } @@ -22399,18 +22399,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api loadSampleDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" } ] } @@ -22470,18 +22470,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSampleDatasetLoadStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22541,18 +22541,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22618,18 +22618,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" } ] } @@ -22704,18 +22704,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22796,18 +22796,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -22885,18 +22885,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22971,18 +22971,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23058,18 +23058,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23132,18 +23132,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23210,18 +23210,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" } ] } @@ -23290,18 +23290,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -23368,18 +23368,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23454,18 +23454,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" } ] } @@ -23525,18 +23525,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectServiceAccounts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectServiceAccounts --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23600,18 +23600,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" } ] } @@ -23675,18 +23675,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectServiceAccount --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -23747,18 +23747,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectServiceAccount --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23833,18 +23833,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] }, @@ -23921,18 +23921,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] } @@ -23989,18 +23989,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24066,18 +24066,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" } ] } @@ -24134,18 +24134,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24208,18 +24208,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" } ] } @@ -24285,18 +24285,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -24365,18 +24365,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24454,18 +24454,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" } ] } @@ -24558,18 +24558,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api downloadStreamTenantAuditLogs --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" } ] } @@ -24638,18 +24638,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24724,18 +24724,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" } ] } @@ -24810,18 +24810,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -24888,18 +24888,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24986,18 +24986,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" } ] } @@ -25066,18 +25066,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25153,18 +25153,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addAllTeamsToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" } ] } @@ -25234,18 +25234,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25330,18 +25330,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateTeamRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -25392,18 +25392,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25466,18 +25466,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api saveLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" } ] } @@ -25525,18 +25525,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "Atlas CLI", + "source": "atlas api disableCustomerManagedX509 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25587,18 +25587,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25663,18 +25663,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api verifyLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" } ] } @@ -25737,18 +25737,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfigurationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25826,18 +25826,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25903,18 +25903,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -25994,18 +25994,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -26079,18 +26079,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26159,18 +26159,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" } ] } @@ -26230,18 +26230,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -26299,18 +26299,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26379,18 +26379,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" } ] } @@ -26454,18 +26454,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26529,18 +26529,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -26607,18 +26607,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -26683,18 +26683,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26773,18 +26773,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -26860,18 +26860,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeyAccessListsEntries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26961,18 +26961,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" } ] } @@ -27056,18 +27056,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKeyAccessListEntry --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27146,18 +27146,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27219,18 +27219,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" } ] } @@ -27305,18 +27305,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess_1 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27415,18 +27415,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27501,18 +27501,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27569,18 +27569,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27654,18 +27654,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27734,18 +27734,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27811,18 +27811,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] }, @@ -27888,18 +27888,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] } @@ -27965,18 +27965,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -28040,18 +28040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28129,18 +28129,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" } ] } @@ -28282,18 +28282,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28347,18 +28347,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPendingInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28430,18 +28430,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getInvoice --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28506,18 +28506,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadInvoiceCSV --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28574,18 +28574,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSourceProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28636,18 +28636,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "Atlas CLI", + "source": "atlas api deleteLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28710,18 +28710,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api createLinkToken --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", "label": "curl (Digest)", "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" - }, - { - "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" } ] } @@ -28781,18 +28781,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServiceAccounts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServiceAccounts --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28855,18 +28855,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" } ] } @@ -28926,18 +28926,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServiceAccount --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -28998,18 +28998,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServiceAccount --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29084,18 +29084,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] } @@ -29164,18 +29164,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServiceAccountProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServiceAccountProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -29249,18 +29249,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServiceAccountSecret --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServiceAccountSecret --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" } ] } @@ -29329,18 +29329,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServiceAccountSecret --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServiceAccountSecret --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -29397,18 +29397,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29474,18 +29474,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" } ] } @@ -29555,18 +29555,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29639,18 +29639,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" } ] } @@ -29720,18 +29720,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -29804,18 +29804,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -29886,18 +29886,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29982,18 +29982,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -30075,18 +30075,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listTeamUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -30174,18 +30174,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" } ] } @@ -30267,18 +30267,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api removeTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -30344,18 +30344,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30424,18 +30424,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeOrganizationUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -30515,18 +30515,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -30588,18 +30588,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" } ] } @@ -30660,18 +30660,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getUserByUsername --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30734,18 +30734,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUser --help" + "label": "curl (Digest)", + "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\"" } ] } 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 2d379ba9df..43ed27b762 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 @@ -29078,7 +29078,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSystemStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29091,9 +29094,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getSystemStatus --help /api/atlas/v2/alertConfigs/matchers/fieldNames: get: description: Get all field names that the `matchers.fieldName` parameter accepts when you create or update an Alert Configuration. You can successfully call this endpoint with any assigned role. @@ -29121,7 +29121,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationMatchersFieldNames --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29134,9 +29137,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help /api/atlas/v2/clusters: get: description: Returns the details for all clusters in all projects to which you have access. Clusters contain a group of hosts that maintain the same data set. The response does not include multi-cloud clusters. To use this resource, the requesting API Key can have any cluster-level role. @@ -29165,7 +29165,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClustersForAllProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29178,9 +29181,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClustersForAllProjects --help /api/atlas/v2/eventTypes: get: description: Returns a list of all event types, along with a description and additional metadata about each event. @@ -29209,7 +29209,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listEventTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29222,9 +29225,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listEventTypes --help /api/atlas/v2/federationSettings/{federationSettingsId}: delete: description: 'Deletes the federation settings instance and all associated data, including identity providers and domains. To use this resource, the requesting API Key must have the Organization Owner role in the last remaining connected organization. **Note**: requests to this resource will fail if there is more than one connected organization in the federation.' @@ -29251,7 +29251,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederationApp --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29264,9 +29267,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederationApp --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: get: description: Returns all connected org configs in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected orgs. @@ -29298,7 +29298,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listConnectedOrgConfigs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29311,9 +29314,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listConnectedOrgConfigs --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: delete: description: 'Removes one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. Note: This request fails if only one connected organization exists in the federation.' @@ -29353,7 +29353,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29366,9 +29369,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeConnectedOrgConfig --help get: description: Returns the specified connected org config from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. operationId: getConnectedOrgConfig @@ -29407,7 +29407,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29420,9 +29423,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: "Updates one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. \n\n**Note** If the organization configuration has no associated identity provider, you can't use this resource to update role mappings or post authorization role grants. \n\n**Note**: The domainRestrictionEnabled field defaults to false if not provided in the request. \n\n**Note**: If the identityProviderId field is not provided, you will disconnect the organization and the identity provider. \n\n**Note**: Currently connected data access identity providers missing from the dataAccessIdentityProviderIds field will be disconnected." operationId: updateConnectedOrgConfig @@ -29468,7 +29468,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29485,9 +29488,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateConnectedOrgConfig --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings: get: description: Returns all role mappings from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -29518,7 +29518,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listRoleMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29531,9 +29534,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Adds one role mapping to the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createRoleMapping @@ -29570,7 +29570,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29587,9 +29590,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}: delete: description: Removes one role mapping in the specified organization from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -29628,7 +29628,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29641,9 +29644,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns one role mapping from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getRoleMapping @@ -29683,7 +29683,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29696,9 +29699,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 put: description: Updates one role mapping in the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateRoleMapping @@ -29745,7 +29745,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29762,9 +29765,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders: get: description: Returns all identity providers with the provided protocol and type in the specified federation. If no protocol is specified, only SAML identity providers will be returned. If no idpType is specified, only WORKFORCE identity providers will be returned. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -29818,7 +29818,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIdentityProviders --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29831,9 +29834,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listIdentityProviders --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}: get: deprecated: true @@ -29873,7 +29873,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29886,9 +29889,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2025-01-01" patch: deprecated: true @@ -29936,7 +29936,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29953,9 +29956,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateIdentityProvider --help x-sunset: "2025-01-01" /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: get: @@ -29986,7 +29986,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProviderMetadata --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29999,9 +30002,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups: get: description: Returns details about all projects. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Organization Read Only role or higher. @@ -30032,7 +30032,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30045,9 +30048,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjects --help post: description: Creates one project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Read Write role. operationId: createProject @@ -30095,7 +30095,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30112,9 +30115,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProject --help /api/atlas/v2/groups/{groupId}: delete: description: Removes the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. You can delete a project only if there are no Online Archives for the clusters in the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -30143,7 +30143,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30156,9 +30159,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProject --help get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProject @@ -30186,7 +30186,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30199,9 +30202,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProject --help patch: description: Updates the human-readable label that identifies the specified project, or the tags associated with the project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProject @@ -30240,7 +30240,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30257,9 +30260,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProject --help /api/atlas/v2/groups/{groupId}/access: post: description: Adds one MongoDB Cloud user to the specified project. If the MongoDB Cloud user is not a member of the project's organization, then the user must accept their invitation to the organization to access information within the specified project. If the MongoDB Cloud User is already a member of the project's organization, then they will be added to the project immediately and an invitation will not be returned by this resource. To use this resource, the requesting API Key must have the Group User Admin role. @@ -30298,7 +30298,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addUserToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30315,9 +30318,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addUserToProject --help /api/atlas/v2/groups/{groupId}/accessList: get: description: Returns all access list entries from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -30350,7 +30350,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectIpAccessLists --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30363,9 +30366,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectIpAccessLists --help post: description: Adds one or more access list entries to the specified project. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. Write each entry as either one IP address or one CIDR-notated block of IP addresses. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. This endpoint doesn't support concurrent `POST` requests. You must submit multiple `POST` requests synchronously. externalDocs: @@ -30410,7 +30410,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30427,9 +30430,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectIpAccessList --help /api/atlas/v2/groups/{groupId}/accessList/{entryValue}: delete: description: Removes one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains one IP address, one CIDR-notated block of IP addresses, or one AWS Security Group ID. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Owner role. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -30474,7 +30474,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30487,9 +30490,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectIpAccessList --help get: description: Returns one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. This endpoint (`/groups/{GROUP-ID}/accessList`) manages the Project IP Access List. It doesn't manage the access list for MongoDB Cloud organizations. TheProgrammatic API Keys endpoint (`/orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist`) manages those access lists. externalDocs: @@ -30530,7 +30530,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30543,9 +30546,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: get: description: Returns the status of one project IP access list entry. This resource checks if the provided project IP access list entry applies to all cloud providers serving clusters from the specified project. @@ -30586,7 +30586,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpAccessListStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30599,9 +30602,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/alertConfigs: get: description: |- @@ -30634,7 +30634,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30647,9 +30650,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurations --help post: description: |- Creates one alert configuration for the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -30687,7 +30687,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30704,9 +30707,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}: delete: description: |- @@ -30746,7 +30746,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30759,9 +30762,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteAlertConfiguration --help get: description: |- Returns the specified alert configuration from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -30802,7 +30802,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30815,9 +30818,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: |- Enables or disables the specified alert configuration in the specified project. The resource enables the specified alert configuration if currently enabled. The resource disables the specified alert configuration if currently disabled. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -30867,7 +30867,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30884,9 +30887,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAlertConfiguration --help put: description: |- Updates one alert configuration in the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -30938,7 +30938,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30955,9 +30958,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts: get: description: |- @@ -31002,7 +31002,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertsByAlertConfigurationId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31015,9 +31018,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/alerts: get: description: |- @@ -31061,7 +31061,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlerts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31074,9 +31077,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlerts --help /api/atlas/v2/groups/{groupId}/alerts/{alertId}: get: description: |- @@ -31117,7 +31117,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31130,9 +31133,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: deprecated: true description: |- @@ -31182,7 +31182,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api acknowledgeAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31199,9 +31202,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api acknowledgeAlert --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs: get: @@ -31246,7 +31246,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationsByAlertId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31259,9 +31262,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/apiKeys: get: description: Returns all organization API keys that you assigned to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. @@ -31294,7 +31294,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31307,9 +31310,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectApiKeys --help post: description: Creates and assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: createProjectApiKey @@ -31342,7 +31342,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31359,9 +31362,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectApiKey --help /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -31402,7 +31402,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31415,9 +31418,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectApiKey --help patch: description: Updates the roles of the organization API key that you specify for the project that you specify. You must specify at least one valid role for the project. The application removes any roles that you do not include in this request if they were previously set in the organization API key that you specify for the project. operationId: updateApiKeyRoles @@ -31464,7 +31464,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKeyRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31481,9 +31484,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKeyRoles --help post: description: Assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can then use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: addProjectApiKey @@ -31527,7 +31527,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31544,9 +31547,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectApiKey --help /api/atlas/v2/groups/{groupId}/auditLog: get: description: Returns the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. @@ -31573,7 +31573,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31586,9 +31589,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAuditingConfiguration --help patch: description: Updates the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. operationId: updateAuditingConfiguration @@ -31623,7 +31623,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31640,9 +31643,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAuditingConfiguration --help /api/atlas/v2/groups/{groupId}/awsCustomDNS: get: description: Returns the custom DNS configuration for AWS clusters in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -31669,7 +31669,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31682,9 +31685,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAWSCustomDNS --help patch: description: Enables or disables the custom DNS configuration for AWS clusters in the specified project. Enable custom DNS if you use AWS VPC peering and use your own DNS servers. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: toggleAWSCustomDNS @@ -31717,7 +31717,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31734,9 +31737,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAWSCustomDNS --help /api/atlas/v2/groups/{groupId}/backup/exportBuckets: get: deprecated: true @@ -31767,7 +31767,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listExportBuckets --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31780,9 +31783,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2025-05-30" post: deprecated: true @@ -31823,7 +31823,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31840,9 +31843,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createExportBucket --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}: delete: @@ -31883,7 +31883,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31896,9 +31899,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteExportBucket --help get: deprecated: true description: Returns one AWS S3 Bucket or Azure Blob Storage Container associated with the specified Project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -31936,7 +31936,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31949,9 +31952,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/backupCompliancePolicy: get: @@ -31981,7 +31981,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31994,9 +31997,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getDataProtectionSettings --help put: description: 'Updates the Backup Compliance Policy settings for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' operationId: updateDataProtectionSettings @@ -32040,7 +32040,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32057,9 +32060,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDataProtectionSettings --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess: get: description: Returns all cloud provider access roles with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32086,7 +32086,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderAccessRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32099,9 +32102,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listCloudProviderAccessRoles --help post: description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -32137,7 +32137,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32154,9 +32157,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}: delete: description: Revokes access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. @@ -32200,7 +32200,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deauthorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32213,9 +32216,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - - label: Atlas CLI - lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: get: description: Returns the access role with the specified id and with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32251,7 +32251,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32264,9 +32267,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Grants access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. This API endpoint is one step in a procedure to create unified access for MongoDB Cloud services. externalDocs: @@ -32315,7 +32315,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api authorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32332,9 +32335,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/clusters: get: deprecated: true @@ -32371,7 +32371,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClusters --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32384,9 +32387,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClusters --help x-sunset: "2026-03-01" post: deprecated: true @@ -32429,7 +32429,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32446,9 +32449,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCluster --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}: delete: @@ -32494,7 +32494,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32507,9 +32510,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCluster --help get: deprecated: true description: 'Returns the details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. The response includes clusters with asymmetrically-sized shards. To use this resource, the requesting API Key must have the Project Read Only role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-01-01}' @@ -32549,7 +32549,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32562,9 +32565,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -32614,7 +32614,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32631,9 +32634,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCluster --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: get: @@ -32673,7 +32673,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupExportJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32686,9 +32689,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Exports one backup snapshot for dedicated Atlas cluster using Cloud Backups to an Export Bucket. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: createBackupExportJob @@ -32735,7 +32735,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32752,9 +32755,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupExportJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}: get: description: Returns one Cloud Backup snapshot export job associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -32795,7 +32795,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32806,11 +32809,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -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 + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: get: description: Returns all cloud backup restore jobs for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32849,7 +32849,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32862,9 +32865,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: |- Restores one snapshot of one cluster from the specified project. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -32915,7 +32915,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32932,9 +32935,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}: delete: description: Cancels one cloud backup restore job of one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32981,7 +32981,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cancelBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32994,9 +32997,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns one cloud backup restore job for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: getBackupRestoreJob @@ -33040,7 +33040,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33053,9 +33056,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: delete: deprecated: true @@ -33093,7 +33093,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllBackupSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33106,9 +33109,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2025-08-05" get: deprecated: true @@ -33145,7 +33145,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33158,9 +33161,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2025-08-05" patch: deprecated: true @@ -33209,7 +33209,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33226,9 +33229,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateBackupSchedule --help x-sunset: "2025-08-05" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots: get: @@ -33270,7 +33270,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listReplicaSetBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33283,9 +33286,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: |- Takes one on-demand snapshot for the specified cluster. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -33332,7 +33332,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api takeSnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33349,9 +33352,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api takeSnapshot --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}: delete: description: Removes the specified snapshot. To use this resource, the requesting API Key must have the Project Owner role. @@ -33398,7 +33398,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33411,9 +33414,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns one snapshot from the specified cluster. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getReplicaSetBackup @@ -33459,7 +33459,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33472,9 +33475,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Changes the expiration date for one cloud backup snapshot for one cluster in the specified project. operationId: updateSnapshotRetention @@ -33527,7 +33527,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateSnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33544,9 +33547,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateSnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}: delete: description: Removes one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33591,7 +33591,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33604,9 +33607,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getShardedClusterBackup @@ -33652,7 +33652,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33665,9 +33668,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: get: description: Returns all snapshots of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33705,7 +33705,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listShardedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33718,9 +33721,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: post: description: Requests one snapshot for the specified shared cluster. This resource returns a `snapshotURL` that you can use to download the snapshot. This `snapshotURL` remains active for four hours after you make the request. To use this resource, the requesting API Key must have the Project Owner role. @@ -33771,7 +33771,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33788,9 +33791,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api downloadSharedClusterBackup --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore: post: description: Restores the specified cluster. MongoDB Cloud limits which clusters can be the target clusters of a restore. The target cluster can't use encryption at rest, run a major release MongoDB version different than the snapshot, or receive client requests during restores. MongoDB Cloud deletes all existing data on the target cluster prior to the restore operation. To use this resource, the requesting API Key must have the Project Owner role. @@ -33839,7 +33839,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33856,9 +33859,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores: get: description: Returns all restore jobs for the specified M2 or M5 cluster. Restore jobs restore a cluster using a snapshot. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33896,7 +33896,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33909,9 +33912,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: get: description: Returns the specified restore job. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33958,7 +33958,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33971,9 +33974,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: get: description: Returns details for all snapshots for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34011,7 +34011,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34024,9 +34027,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: get: description: Returns details for one snapshot for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34073,7 +34073,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34086,9 +34089,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: get: deprecated: true @@ -34128,7 +34128,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupCheckpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34141,9 +34144,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: get: deprecated: true @@ -34193,7 +34193,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupCheckpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34206,9 +34209,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes: post: deprecated: true @@ -34259,7 +34259,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34276,9 +34279,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}: get: @@ -34333,7 +34333,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexesDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34346,9 +34349,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}: delete: @@ -34400,7 +34400,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34413,9 +34416,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2025-06-01" get: deprecated: true @@ -34464,7 +34464,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34477,9 +34480,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2025-06-01" patch: deprecated: true @@ -34539,7 +34539,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34556,9 +34559,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites: get: @@ -34599,7 +34599,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34612,9 +34615,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping: delete: @@ -34655,7 +34655,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllCustomZoneMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34668,9 +34671,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2026-03-01" post: deprecated: true @@ -34719,7 +34719,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomZoneMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34736,9 +34739,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomZoneMapping --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces: delete: @@ -34791,7 +34791,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34804,9 +34807,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2026-03-01" post: deprecated: true @@ -34857,7 +34857,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34874,9 +34877,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createManagedNamespace --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index: post: @@ -34988,7 +34988,10 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRollingIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35005,9 +35008,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRollingIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives: get: description: Returns details of all online archives. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35049,7 +35049,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOnlineArchives --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35062,9 +35065,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Creates one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -35115,7 +35115,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35132,9 +35135,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}: delete: description: Removes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. @@ -35184,7 +35184,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35197,9 +35200,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns one online archive for one cluster. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. externalDocs: @@ -35250,7 +35250,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35263,9 +35266,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates, pauses, or resumes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -35325,7 +35325,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35342,9 +35345,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz: get: description: 'Downloads query logs for the specified online archive. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -35410,7 +35410,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadOnlineArchiveQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35423,9 +35426,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation: delete: description: Ends a cluster outage simulation. @@ -35468,7 +35468,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api endOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35481,9 +35484,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - - label: Atlas CLI - lang: cURL - source: atlas api endOutageSimulation --help get: description: Returns one outage simulation for one cluster. externalDocs: @@ -35525,7 +35525,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35536,11 +35539,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -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 + --header "Accept: application/vnd.atlas.2023-10-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" post: description: Starts a cluster outage simulation. externalDocs: @@ -35587,7 +35587,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api startOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35604,9 +35607,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api startOutageSimulation --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs: get: deprecated: true @@ -35648,7 +35648,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35661,9 +35664,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -35715,7 +35715,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35732,9 +35735,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries: post: @@ -35769,7 +35769,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api testFailover --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35786,9 +35789,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api testFailover --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs: get: deprecated: true @@ -35841,7 +35841,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35854,9 +35857,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: deprecated: true description: Restores one legacy backup for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). This endpoint doesn't support creating checkpoint restore jobs for sharded clusters, or creating restore jobs for queryable backup snapshots. If you create an automated restore job by specifying `delivery.methodName` of `AUTOMATED_RESTORE` in your request body, MongoDB Cloud removes all existing data on the target cluster prior to the restore. @@ -35901,7 +35901,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35918,9 +35921,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLegacyBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}: get: deprecated: true @@ -35971,7 +35971,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35984,9 +35987,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: delete: deprecated: true @@ -36025,7 +36025,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36038,9 +36041,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2026-03-01" get: deprecated: true @@ -36079,7 +36079,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36092,9 +36095,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -36142,7 +36142,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36159,9 +36162,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchDeployment --help x-sunset: "2026-03-01" post: deprecated: true @@ -36209,7 +36209,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36226,9 +36229,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchDeployment --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule: get: @@ -36269,7 +36269,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36282,9 +36285,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: deprecated: true description: |- @@ -36330,7 +36330,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36347,9 +36350,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotSchedule --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots: get: deprecated: true @@ -36399,7 +36399,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacySnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36412,9 +36415,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: delete: deprecated: true @@ -36462,7 +36462,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36475,9 +36478,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: deprecated: true description: Returns one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -36522,7 +36522,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36535,9 +36538,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: deprecated: true description: Changes the expiration date for one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -36589,7 +36589,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36606,9 +36609,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status: get: description: Returns the status of all changes that you made to the specified cluster in the specified project. Use this resource to check the progress MongoDB Cloud has made in processing your changes. The response does not include the deployment of new dedicated clusters. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36644,7 +36644,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36657,9 +36660,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: get: description: 'Returns a compressed (.gz) log file that contains a range of log messages for the specified host for the specified project. MongoDB updates process and audit logs from the cluster backend infrastructure every five minutes and contain log data from the previous five minutes. If you poll the API for log files, we recommend polling every five minutes. For example, if the logs are updated at 4:00 UTC and then you poll the API, the API returns log data from the interval between 3:55 UTC and 4:00 UTC. This feature isn''t available for `M0` free clusters, `M2`, `M5`, or serverless clusters. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip". Deprecated versions: v2-{2023-01-01}' @@ -36730,7 +36730,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36743,9 +36746,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/provider/regions: get: description: Returns the list of regions available for the specified cloud provider at the specified tier. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36787,7 +36787,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderRegions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36800,9 +36803,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: post: description: Upgrades a shared-tier cluster in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. Each project supports up to 25 clusters. @@ -36844,7 +36844,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36861,9 +36864,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedCluster --help /api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless: post: description: Upgrades a shared-tier cluster to a serverless instance in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. @@ -36905,7 +36905,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedClusterToServerless --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36922,9 +36925,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedClusterToServerless --help /api/atlas/v2/groups/{groupId}/containers: get: description: Returns details about all network peering containers in the specified project for the specified cloud provider. If you do not specify the cloud provider, MongoDB Cloud returns details about all network peering containers in the project for Amazon Web Services (AWS). To use this resource, the requesting API Key must have the Project Read Only role. @@ -36967,7 +36967,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainerByCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36980,9 +36983,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help post: description: Creates one new network peering container in the specified project. MongoDB Cloud can deploy Network Peering connections in a network peering container. GCP can have one container per project. AWS and Azure can have one container per cloud provider region. To use this resource, the requesting API Key must have the Project Owner role. operationId: createPeeringContainer @@ -37023,7 +37023,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37040,9 +37043,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/{containerId}: delete: description: Removes one network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -37085,7 +37085,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37098,9 +37101,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringContainer --help get: description: Returns details about one network peering container in one specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringContainer @@ -37136,7 +37136,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37149,9 +37152,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates the network details and labels of one specified network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringContainer @@ -37202,7 +37202,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37219,9 +37222,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/all: get: description: Returns details about all network peering containers in the specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37251,7 +37251,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37264,9 +37267,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/customDBRoles/roles: get: description: Returns all custom roles for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37295,7 +37295,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCustomDatabaseRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37308,9 +37311,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Creates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createCustomDatabaseRole @@ -37351,7 +37351,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37368,9 +37371,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}: delete: description: Removes one custom role from the specified project. You can't remove a custom role that would leave one or more child roles with no parent roles or actions. You also can't remove a custom role that would leave one or more database users without roles. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -37407,7 +37407,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37420,9 +37423,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCustomDatabaseRole --help get: description: Returns one custom role for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getCustomDatabaseRole @@ -37456,7 +37456,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37469,9 +37472,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateCustomDatabaseRole @@ -37518,7 +37518,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37535,9 +37538,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/dataFederation: get: description: Returns the details of all federated database instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only or higher role. @@ -37575,7 +37575,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listFederatedDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37588,9 +37591,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listFederatedDatabases --help post: description: Creates one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createFederatedDatabase @@ -37629,7 +37629,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37646,9 +37649,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}: delete: description: Removes one federated database instance from the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. @@ -37681,7 +37681,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37694,9 +37697,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederatedDatabase --help get: description: Returns the details of one federated database instance within the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getFederatedDatabase @@ -37731,7 +37731,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37744,9 +37747,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates the details of one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or higher role. operationId: updateFederatedDatabase @@ -37793,7 +37793,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37810,9 +37813,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits: get: description: Returns query limits for a federated databases instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37849,7 +37849,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37862,9 +37865,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: delete: description: Deletes one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -37915,7 +37915,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOneDataFederationInstanceQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37928,9 +37931,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns the details of one query limit for the specified federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: returnFederatedDatabaseQueryLimit @@ -37981,7 +37981,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37994,9 +37997,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Creates or updates one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: createOneDataFederationQueryLimit @@ -38057,7 +38057,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOneDataFederationQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38072,11 +38075,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ - -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOneDataFederationQueryLimit --help + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz: get: description: 'Downloads the query logs for the specified federated database instance. To use this resource, the requesting API Key must have the Project Owner or Project Data Access Read Write roles. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -38133,7 +38133,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadFederatedDatabaseQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38146,9 +38149,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/databaseUsers: get: description: Returns all database users that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -38178,7 +38178,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38191,9 +38194,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listDatabaseUsers --help post: description: Creates one database user in the specified project. This MongoDB Cloud supports a maximum of 100 database users per project. If you require more than 100 database users on a project, contact [Support](https://cloud.mongodb.com/support). To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createDatabaseUser @@ -38325,7 +38325,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38342,9 +38345,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}: delete: description: Removes one database user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -38401,7 +38401,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38414,9 +38417,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDatabaseUser --help get: description: Returns one database user that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getDatabaseUser @@ -38470,7 +38470,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38483,9 +38486,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates one database user that belongs to the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: updateDatabaseUser @@ -38552,7 +38552,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38569,9 +38572,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs: get: description: Returns all unexpired X.509 certificates for the specified MongoDB user. This MongoDB user belongs to one project. Atlas manages these certificates and the MongoDB user. To use this resource, the requesting API Key must have the Project Read Only role. @@ -38609,7 +38609,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUserCertificates --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38622,9 +38625,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: |- Generates one X.509 certificate for the specified MongoDB user. Atlas manages the certificate and MongoDB user that belong to one project. To use this resource, the requesting API Key must have the Project Owner role. @@ -38680,7 +38680,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUserCertificate --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38697,9 +38700,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUserCertificate --help /api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}: get: description: Returns the access logs of one cluster identified by the cluster's name. Access logs contain a list of authentication requests made against your cluster. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -38772,7 +38772,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByClusterName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38785,9 +38788,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: get: description: Returns the access logs of one cluster identified by the cluster's hostname. Access logs contain a list of authentication requests made against your clusters. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -38857,7 +38857,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByHostname --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38870,9 +38873,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/encryptionAtRest: get: description: |- @@ -38902,7 +38902,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38915,9 +38918,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getEncryptionAtRest --help patch: description: |- Updates the configuration for encryption at rest using the keys you manage through your cloud provider. MongoDB Cloud encrypts all storage even if you don't use your own key management. This resource requires the requesting API Key to have the Project Owner role. This feature isn't available for `M0` free clusters, `M2`, `M5`, or serverless clusters. @@ -38968,7 +38968,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38985,9 +38988,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateEncryptionAtRest --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints: get: description: Returns the private endpoints of the specified cloud provider for encryption at rest using customer key management. @@ -39022,7 +39022,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39035,9 +39038,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Creates a private endpoint in the specified region for encryption at rest using customer key management. operationId: createEncryptionAtRestPrivateEndpoint @@ -39078,7 +39078,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39095,9 +39098,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}: delete: description: Deletes one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. @@ -39148,7 +39148,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39161,9 +39164,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. operationId: getEncryptionAtRestPrivateEndpoint @@ -39206,7 +39206,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39219,9 +39222,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/events: get: description: |- @@ -39305,7 +39305,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39318,9 +39321,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectEvents --help /api/atlas/v2/groups/{groupId}/events/{eventId}: get: description: |- @@ -39367,7 +39367,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39380,9 +39383,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: get: description: Returns all Atlas Search metric types available for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -39411,7 +39411,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listMetricTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39424,9 +39427,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: get: description: Returns the Atlas Search metrics data series within the provided time range for one namespace and index name on the specified process. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -39485,7 +39485,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39498,9 +39501,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: get: description: Returns the Atlas Search index metrics within the specified time range for one namespace in the specified process. @@ -39558,7 +39558,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39571,9 +39574,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: get: description: Returns the Atlas Search hardware and status data series within the provided time range for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -39630,7 +39630,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39643,9 +39646,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/integrations: get: description: Returns the settings that permit integrations with all configured third-party services. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -39679,7 +39679,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listThirdPartyIntegrations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39692,9 +39695,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listThirdPartyIntegrations --help /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: delete: description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -39743,7 +39743,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39756,9 +39759,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteThirdPartyIntegration --help get: description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: getThirdPartyIntegration @@ -39806,7 +39806,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39819,9 +39822,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: createThirdPartyIntegration @@ -39881,7 +39881,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39898,9 +39901,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createThirdPartyIntegration --help put: description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: updateThirdPartyIntegration @@ -39958,7 +39958,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39975,9 +39978,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateThirdPartyIntegration --help /api/atlas/v2/groups/{groupId}/invites: get: deprecated: true @@ -40013,7 +40013,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40026,9 +40029,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectInvitations --help x-sunset: "2024-10-04" patch: deprecated: true @@ -40067,7 +40067,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40084,9 +40087,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitation --help x-sunset: "2024-10-04" post: deprecated: true @@ -40121,7 +40121,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40138,9 +40141,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectInvitation --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/invites/{invitationId}: delete: @@ -40177,7 +40177,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40190,9 +40193,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectInvitation --help x-sunset: "2024-10-04" get: deprecated: true @@ -40231,7 +40231,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40244,9 +40247,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 x-sunset: "2024-10-04" patch: deprecated: true @@ -40293,7 +40293,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40310,9 +40313,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitationById --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/ipAddresses: get: @@ -40342,7 +40342,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40355,9 +40358,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllIPAddresses --help /api/atlas/v2/groups/{groupId}/limits: get: description: Returns all the limits for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40392,7 +40392,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40405,9 +40408,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectLimits --help /api/atlas/v2/groups/{groupId}/limits/{limitName}: delete: description: Removes the specified project limit. Depending on the limit, Atlas either resets the limit to its default value or removes the limit entirely. To use this resource, the requesting API Key must have the Project Owner role. @@ -40474,7 +40474,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40487,9 +40490,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectLimit --help get: description: Returns the specified limit for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProjectLimit @@ -40557,7 +40557,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40570,9 +40573,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: |- Sets the specified project limit. To use this resource, the requesting API Key must have the Project Owner role. @@ -40650,7 +40650,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40667,9 +40670,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setProjectLimit --help /api/atlas/v2/groups/{groupId}/liveMigrations: post: deprecated: true @@ -40719,7 +40719,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40736,9 +40739,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushMigration --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}: get: @@ -40771,7 +40771,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40784,9 +40787,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: put: description: Cut over the migrated cluster to MongoDB Atlas. Confirm when the cut over completes. When the cut over completes, MongoDB Atlas completes the live migration process and stops synchronizing with the source cluster. Your API Key must have the Organization Owner role to successfully call this resource. @@ -40818,7 +40818,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cutoverMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40835,9 +40838,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api cutoverMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/validate: post: deprecated: true @@ -40880,7 +40880,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api validateMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40895,11 +40898,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ - -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api validateMigration --help + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ + -d '{ }' x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}: get: @@ -40942,7 +40942,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getValidationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40955,9 +40958,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/maintenanceWindow: delete: description: Resets the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -40983,7 +40983,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resetMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40996,9 +40999,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - - label: Atlas CLI - lang: cURL - source: atlas api resetMaintenanceWindow --help get: description: Returns the maintenance window for the specified project. MongoDB Cloud starts those maintenance activities when needed. You can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: getMaintenanceWindow @@ -41024,7 +41024,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41037,9 +41040,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getMaintenanceWindow --help patch: description: Updates the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateMaintenanceWindow @@ -41073,7 +41073,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41090,9 +41093,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer: post: description: Toggles automatic deferral of the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -41118,7 +41118,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleMaintenanceAutoDefer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41135,9 +41138,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/defer: post: description: Defers the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -41163,7 +41163,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deferMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41180,9 +41183,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api deferMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/managedSlowMs: get: description: Get whether the Managed Slow MS feature is enabled. @@ -41209,7 +41209,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedSlowMs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41222,9 +41225,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getManagedSlowMs --help /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: delete: description: Disables the slow operation threshold that MongoDB Cloud calculated for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -41251,7 +41251,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41264,9 +41267,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - - label: Atlas CLI - lang: cURL - source: atlas api disableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: post: description: Enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -41293,7 +41293,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api enableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41310,9 +41313,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api enableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/mongoDBVersions: get: description: Returns the MongoDB Long Term Support Major Versions available to new clusters in this project. @@ -41380,7 +41380,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLTSVersions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41393,9 +41396,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectLTSVersions --help /api/atlas/v2/groups/{groupId}/peers: get: description: Returns details about all network peering connections in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41437,7 +41437,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41450,9 +41453,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringConnections --help post: description: Creates one new network peering connection in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations and prerequisites, see the Network Peering Documentation. externalDocs: @@ -41494,7 +41494,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41511,9 +41514,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringConnection --help /api/atlas/v2/groups/{groupId}/peers/{peerId}: delete: description: Removes one network peering connection in the specified project. If you Removes the last network peering connection associated with a project, MongoDB Cloud also removes any AWS security groups from the project IP access list. To use this resource, the requesting API Key must have the Project Owner role. @@ -41551,7 +41551,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41564,9 +41567,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringConnection --help get: description: Returns details about one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringConnection @@ -41603,7 +41603,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41616,9 +41619,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringConnection @@ -41666,7 +41666,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41683,9 +41686,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringConnection --help /api/atlas/v2/groups/{groupId}/pipelines: get: description: Returns a list of Data Lake Pipelines. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41715,7 +41715,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelines --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41728,9 +41731,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPipelines --help post: description: Creates one Data Lake Pipeline. operationId: createPipeline @@ -41766,7 +41766,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41783,9 +41786,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}: delete: description: Removes one Data Lake Pipeline. @@ -41822,7 +41822,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41835,9 +41838,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePipeline --help get: description: Returns the details of one Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipeline @@ -41874,7 +41874,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41887,9 +41890,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates one Data Lake Pipeline. operationId: updatePipeline @@ -41936,7 +41936,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41953,9 +41956,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules: get: description: Returns a list of backup schedule policy items that you can use as a Data Lake Pipeline source. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41995,7 +41995,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42008,9 +42011,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: get: description: Returns a list of backup snapshots that you can use to trigger an on demand pipeline run. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42058,7 +42058,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42071,9 +42074,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: post: description: Pauses ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42111,7 +42111,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pausePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42128,9 +42131,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pausePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume: post: description: Resumes ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42168,7 +42168,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resumePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42185,9 +42188,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api resumePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs: get: description: Returns a list of past Data Lake Pipeline runs. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42235,7 +42235,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineRuns --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42248,9 +42251,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: delete: description: Deletes dataset that Atlas generated during the specified pipeline run. @@ -42298,7 +42298,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipelineRunDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42311,9 +42314,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns the details of one Data Lake Pipeline run within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipelineRun @@ -42360,7 +42360,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipelineRun --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42373,9 +42376,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: post: description: Triggers a Data Lake Pipeline ingestion of a specified snapshot. @@ -42420,7 +42420,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api triggerSnapshotIngestion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42437,9 +42440,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api triggerSnapshotIngestion --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService: get: description: Returns the name, interfaces, and state of all private endpoint services for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42479,7 +42479,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPrivateEndpointServices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42492,9 +42495,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: delete: description: Removes one private endpoint service from the specified project. This cloud service provider manages the private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -42541,7 +42541,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42554,9 +42557,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns the name, interfaces, and state of the specified private endpoint service from one project. The cloud service provider hosted this private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpointService @@ -42604,7 +42604,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42617,9 +42620,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: post: description: Creates one private endpoint for the specified cloud service provider. This cloud service provider manages the private endpoint service, which in turn manages the private endpoints for the project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations, limitations, and prerequisites, see the MongoDB documentation for setting up a private endpoint. @@ -42679,7 +42679,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42696,9 +42699,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}: delete: description: Removes one private endpoint from the specified project and private endpoint service, as managed by the specified cloud service provider. When the last private endpoint is removed from a given private endpoint service, that private endpoint service is also removed. To use this resource, the requesting API Key must have the Project Owner role. @@ -42752,7 +42752,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42765,9 +42768,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns the connection state of the specified private endpoint. The private endpoint service manages this private endpoint which belongs to one project hosted from one cloud service provider. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpoint @@ -42822,7 +42822,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42835,9 +42838,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: post: description: Creates one private endpoint service for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. When you create a private endpoint service, MongoDB Cloud creates a network container in the project for the cloud provider for which you create the private endpoint service if one doesn't already exist. To learn more about private endpoint terminology in MongoDB Cloud, see Private Endpoint Concepts. To use this resource, the requesting API Key must have the Project Owner role. @@ -42874,7 +42874,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42891,9 +42894,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpointService --help /api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode: get: description: Checks whether each region in the specified cloud service provider can create multiple private endpoints per region. The cloud service provider manages the private endpoint for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42922,7 +42922,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42935,9 +42938,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Enables or disables the ability to create multiple private endpoints per region in all cloud service providers in one project. The cloud service provider manages the private endpoints for the project. Connection strings to existing multi-region and global sharded clusters change when you enable this setting. You must update your applications to use the new connection strings. This might cause downtime. To use this resource, the requesting API Key must have the Project Owner role and all clusters in the deployment must be sharded clusters. Once enabled, you cannot create replica sets. operationId: toggleRegionalizedPrivateEndpointSetting @@ -42972,7 +42972,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42989,9 +42992,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint: get: description: Returns all private endpoints for one serverless instance. You must have at least the Project Read Only role for the project to successfully call this resource. @@ -43029,7 +43029,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43042,9 +43045,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: |- Creates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -43092,7 +43092,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43109,9 +43112,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}: delete: description: Remove one private endpoint from one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -43156,7 +43156,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43169,9 +43172,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Return one private endpoint for one serverless instance. Identify this endpoint using its unique ID. You must have at least the Project Read Only role for the project to successfully call this resource. operationId: getServerlessPrivateEndpoint @@ -43215,7 +43215,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43228,9 +43231,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessPrivateEndpoint @@ -43281,7 +43281,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43296,11 +43299,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ - -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/privateIpMode: get: deprecated: true @@ -43331,7 +43331,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43344,9 +43347,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help patch: deprecated: true description: Disables Connect via Peering Only mode for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -43385,7 +43385,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disablePeering --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43402,9 +43405,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api disablePeering --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds: get: description: Returns all private endpoints for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. @@ -43438,7 +43438,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDataFederationPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43451,9 +43454,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: |- Adds one private endpoint for Federated Database Instances and Online Archives to the specified projects. If the endpoint ID already exists and the associated comment is unchanged, Atlas Data Federation makes no change to the endpoint ID list. If the endpoint ID already exists and the associated comment is changed, Atlas Data Federation updates the comment value only in the endpoint ID list. If the endpoint ID doesn't exist, Atlas Data Federation appends the new endpoint to the list of endpoints in the endpoint ID list. Each region has an associated service name for the various endpoints in each region. @@ -43507,7 +43507,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43524,9 +43527,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}: delete: description: Removes one private endpoint for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -43564,7 +43564,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43577,9 +43580,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help get: description: Returns the specified private endpoint for Federated Database Instances or Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getDataFederationPrivateEndpoint @@ -43618,7 +43618,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43631,9 +43634,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes: get: description: Returns details of all processes for the specified project. A MongoDB process can be either a `mongod` or `mongos`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43663,7 +43663,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasProcesses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43676,9 +43679,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAtlasProcesses --help /api/atlas/v2/groups/{groupId}/processes/{processId}: get: description: Returns the processes for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43713,7 +43713,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43726,9 +43729,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: get: description: Returns the list of databases running on the specified host for the specified project. `M0` free clusters, `M2`, `M5`, and serverless clusters have some [operational limits](https://www.mongodb.com/docs/atlas/reference/free-shared-limitations/#operational-limitations). The MongoDB Cloud process must be a `mongod`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43766,7 +43766,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43779,9 +43782,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: get: description: Returns one database running on the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43822,7 +43822,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43835,9 +43838,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: get: description: Returns the measurements of one database for the specified host for the specified project. Returns the database's on-disk storage space based on the MongoDB `dbStats` command output. To calculate some metric series, Atlas takes the rate between every two adjacent points. For these metric series, the first data point has a null value because Atlas can't calculate a rate for the first data point given the query time range. Atlas retrieves database metrics every 20 minutes but reduces frequency when necessary to optimize database performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43904,7 +43904,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43917,9 +43920,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: get: description: Returns the list of disks or partitions for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43957,7 +43957,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskPartitions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43970,9 +43973,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: get: description: Returns measurement details for one disk or partition for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44012,7 +44012,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44025,9 +44028,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: get: description: |- @@ -44110,7 +44110,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44123,9 +44126,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: get: description: |- @@ -44319,7 +44319,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44332,9 +44335,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: get: description: Returns up to 20 namespaces for collections experiencing slow queries on the specified host. If you specify a secondary member of a replica set that hasn't received any database read operations, the endpoint doesn't return any namespaces. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44389,7 +44389,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueryNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44402,9 +44405,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: get: description: Returns log lines for slow queries that the Performance Advisor and Query Profiler identified. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. MongoDB Cloud bases the threshold for slow queries on the average time of operations on your cluster. This enables workload-relevant recommendations. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -44476,7 +44476,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44489,9 +44492,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: get: description: Returns the indexes that the Performance Advisor suggests. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44570,7 +44570,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSuggestedIndexes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44583,9 +44586,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pushBasedLogExport: delete: description: Disables the push-based log export feature by resetting the project level settings to its default configuration. @@ -44616,7 +44616,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44629,9 +44632,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - - label: Atlas CLI - lang: cURL - source: atlas api deletePushBasedLogConfiguration --help get: description: Fetches the current project level settings for the push-based log export feature. operationId: getPushBasedLogConfiguration @@ -44661,7 +44661,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44674,9 +44677,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getPushBasedLogConfiguration --help patch: description: Updates the project level settings for the push-based log export feature. operationId: updatePushBasedLogConfiguration @@ -44714,7 +44714,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44731,9 +44734,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePushBasedLogConfiguration --help post: description: Configures the project level settings for the push-based log export feature. operationId: createPushBasedLogConfiguration @@ -44771,7 +44771,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44788,9 +44791,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushBasedLogConfiguration --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}: post: description: Requests loading the MongoDB sample dataset into the specified cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -44829,7 +44829,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api loadSampleDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44846,9 +44849,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api loadSampleDataset --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}: get: description: Checks the progress of loading the sample dataset into one cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -44883,7 +44883,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSampleDatasetLoadStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44896,9 +44899,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless: get: description: Returns details for all serverless instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44928,7 +44928,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44941,9 +44944,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServerlessInstances --help post: description: Creates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessInstance @@ -44980,7 +44980,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44997,9 +45000,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessInstance --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs: get: description: Returns all restore jobs for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45040,7 +45040,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45053,9 +45056,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Restores one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessBackupRestoreJob @@ -45103,7 +45103,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45120,9 +45123,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}: get: description: Returns one restore job for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45169,7 +45169,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45182,9 +45185,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: get: description: Returns all snapshots of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45225,7 +45225,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45238,9 +45241,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: get: description: Returns one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45287,7 +45287,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45300,9 +45303,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: get: description: Get whether the Serverless Auto Indexing feature is enabled. @@ -45338,7 +45338,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45351,9 +45354,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Set whether the Serverless Auto Indexing feature is enabled. operationId: setServerlessAutoIndexing @@ -45393,7 +45393,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45410,9 +45413,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setServerlessAutoIndexing --help /api/atlas/v2/groups/{groupId}/serverless/{name}: delete: description: Removes one serverless instance from the specified project. The serverless instance must have termination protection disabled in order to be deleted. To use this resource, the requesting API Key must have the Project Owner role. @@ -45452,7 +45452,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45465,9 +45468,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServerlessInstance --help get: description: Returns details for one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getServerlessInstance @@ -45506,7 +45506,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45519,9 +45522,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessInstance @@ -45565,7 +45565,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45582,9 +45585,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessInstance --help /api/atlas/v2/groups/{groupId}/serviceAccounts: get: description: Returns list of Service Accounts for a project with service account details. @@ -45615,7 +45615,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectServiceAccounts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45628,9 +45631,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectServiceAccounts --help post: description: Creates and assigns the specified Service Account to the specified Project. operationId: createProjectServiceAccount @@ -45666,7 +45666,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45683,9 +45686,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectServiceAccount --help /api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}: delete: description: Removes one Service Account from the specified project. @@ -45721,7 +45721,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45734,9 +45737,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectServiceAccount --help get: description: Get project Service Account Details. operationId: getProjectServiceAccount @@ -45770,7 +45770,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45783,9 +45786,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Update Service Account in Project. operationId: updateProjectServiceAccount @@ -45828,7 +45828,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45845,9 +45848,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectServiceAccount --help post: description: Assigns the specified organization Service Account to the specified project. operationId: addProjectServiceAccount @@ -45892,7 +45892,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45907,11 +45910,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ - -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectServiceAccount --help + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/settings: get: description: Returns details about the specified project's settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45942,7 +45942,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45955,9 +45958,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectSettings --help patch: description: Updates the settings of the specified project. You can update any of the options available. MongoDB cloud only updates the options provided in the request. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProjectSettings @@ -45994,7 +45994,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46011,9 +46014,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectSettings --help /api/atlas/v2/groups/{groupId}/streams: get: description: Returns all stream instances for the specified project. @@ -46042,7 +46042,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46055,9 +46058,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listStreamInstances --help post: description: Creates one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: createStreamInstance @@ -46092,7 +46092,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46109,9 +46112,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}: delete: description: Delete one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. @@ -46148,7 +46148,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46161,9 +46164,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteStreamInstance --help get: description: Returns the details of one stream instance within the specified project. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. operationId: getStreamInstance @@ -46203,7 +46203,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46216,9 +46219,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Update one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: updateStreamInstance @@ -46263,7 +46263,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46280,9 +46283,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs: get: description: 'Downloads the audit logs for the specified Atlas Streams Processing instance. By default, logs cover periods of 30 days. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -46340,7 +46340,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadStreamTenantAuditLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46353,9 +46356,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections: get: description: Returns all connections of the stream instance for the specified project.To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. @@ -46392,7 +46392,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46405,9 +46408,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Creates one connection for a stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Stream Processing Owner role. operationId: createStreamConnection @@ -46450,7 +46450,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46467,9 +46470,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamConnection --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}: delete: description: Delete one connection of the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -46512,7 +46512,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46525,9 +46528,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns the details of one stream connection within the specified stream instance. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getStreamConnection @@ -46566,7 +46566,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46579,9 +46582,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Update one connection for the specified stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. operationId: updateStreamConnection @@ -46632,7 +46632,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46649,9 +46652,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamConnection --help /api/atlas/v2/groups/{groupId}/teams: get: description: Returns all teams to which the authenticated user has access in the project specified using its unique 24-hexadecimal digit identifier. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46687,7 +46687,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46700,9 +46703,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectTeams --help post: description: Adds one team to the specified project. All members of the team share the same project access. MongoDB Cloud limits the number of users to a maximum of 100 teams per project and a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -46746,7 +46746,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addAllTeamsToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46763,9 +46766,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addAllTeamsToProject --help /api/atlas/v2/groups/{groupId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the project specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Project Owner role. @@ -46807,7 +46807,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46820,9 +46823,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectTeam --help patch: description: Updates the project roles assigned to the specified team. You can grant team roles for specific projects and grant project access roles to users in the team. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -46873,7 +46873,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateTeamRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46890,9 +46893,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateTeamRoles --help /api/atlas/v2/groups/{groupId}/userSecurity: get: description: Returns the current LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46919,7 +46919,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46932,9 +46935,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getLDAPConfiguration --help patch: description: |- Edits the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46972,7 +46972,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api saveLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46989,9 +46992,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api saveLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/customerX509: delete: description: |- @@ -47020,7 +47020,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableCustomerManagedX509 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47033,9 +47036,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - - label: Atlas CLI - lang: cURL - source: atlas api disableCustomerManagedX509 --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: delete: description: Removes the current LDAP Distinguished Name mapping captured in the ``userToDNMapping`` document from the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -47062,7 +47062,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47075,9 +47078,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: post: description: Verifies the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -47113,7 +47113,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47130,9 +47133,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api verifyLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}: get: description: Returns the status of one request to verify one LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -47168,7 +47168,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfigurationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47181,9 +47184,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/groups/{groupId}/users: get: description: Returns details about all users in the specified project. Users belong to an organization. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47225,7 +47225,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47238,9 +47241,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectUsers --help /api/atlas/v2/groups/{groupId}/users/{userId}: delete: description: Removes the specified user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -47278,7 +47278,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47291,9 +47294,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectUser --help /api/atlas/v2/groups/{groupId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified project. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified project. To use this resource, the requesting API Key must have the Group User Admin role. @@ -47340,7 +47340,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47357,9 +47360,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectRoles --help /api/atlas/v2/groups/byName/{groupName}: get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47399,7 +47399,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47412,9 +47415,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectByName --help /api/atlas/v2/orgs: get: description: Returns all organizations to which the requesting API Key has access. To use this resource, the requesting API Key must have the Organization Member role. @@ -47454,7 +47454,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47467,9 +47470,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizations --help post: description: Creates one organization in MongoDB Cloud and links it to the requesting API Key's organization. To use this resource, the requesting API Key must have the Organization Owner role. The requesting API Key's organization must be a paying organization. To learn more, see [Configure a Paying Organization](https://www.mongodb.com/docs/atlas/billing/#configure-a-paying-organization) in the MongoDB Atlas documentation. operationId: createOrganization @@ -47509,7 +47509,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47526,9 +47529,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganization --help /api/atlas/v2/orgs/{orgId}: delete: description: |- @@ -47567,7 +47567,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47580,9 +47583,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganization --help get: description: Returns one organization to which the requesting API key has access. To use this resource, the requesting API Key must have the Organization Member role. operationId: getOrganization @@ -47614,7 +47614,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47627,9 +47630,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganization --help patch: description: Renames one organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: renameOrganization @@ -47668,7 +47668,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47685,9 +47688,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameOrganization --help /api/atlas/v2/orgs/{orgId}/apiKeys: get: description: Returns all organization API keys for the specified organization. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the console. To use this resource, the requesting API Key must have the Organization Member role. @@ -47720,7 +47720,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47733,9 +47736,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listApiKeys --help post: description: Creates one API key for the specified organization. An organization API key grants programmatic access to an organization. You can't use the API key to log into the console. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -47771,7 +47771,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47788,9 +47791,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified organization. When you remove an API key from an organization, MongoDB Cloud also removes that key from any projects that use that key. To use this resource, the requesting API Key must have the Organization Owner role. @@ -47829,7 +47829,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47842,9 +47845,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteApiKey --help get: description: Returns one organization API key. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the user interface. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -47882,7 +47882,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47895,9 +47898,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates one organization API key in the specified organization. The organization API keys grant programmatic access to an organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -47944,7 +47944,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47961,9 +47964,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList: get: description: Returns all access list entries that you configured for the specified organization API key. To use this resource, the requesting API Key must have the Organization Member role. @@ -48005,7 +48005,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeyAccessListsEntries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48018,9 +48021,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Creates the access list entries for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. operationId: createApiKeyAccessList @@ -48071,7 +48071,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48088,9 +48091,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKeyAccessList --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}: delete: description: Removes the specified access list entry from the specified organization API key. Resources require all API requests originate from the IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. In addition, you cannot remove the requesting IP address from the requesting organization API key. @@ -48141,7 +48141,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKeyAccessListEntry --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48154,9 +48157,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 get: description: Returns one access list entry for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -48204,7 +48204,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48217,9 +48220,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: post: description: Creates a query process within the Cost Explorer for the given parameters. A token is returned that can be used to poll the status of the query and eventually retrieve the results. @@ -48254,7 +48254,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48271,9 +48274,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCostExplorerQueryProcess --help /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}: get: description: Returns the usage details for a Cost Explorer query, if the query is finished and the data is ready to be viewed. If the data is not ready, a 'processing' response willindicate that another request should be sent later to view the data. @@ -48318,7 +48318,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess_1 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48331,9 +48334,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/events: get: description: |- @@ -48395,7 +48395,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48408,9 +48411,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationEvents --help /api/atlas/v2/orgs/{orgId}/events/{eventId}: get: description: |- @@ -48457,7 +48457,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48470,9 +48473,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/federationSettings: get: description: Returns information about the federation settings for the specified organization. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. @@ -48503,7 +48503,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48516,9 +48519,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getFederationSettings --help /api/atlas/v2/orgs/{orgId}/groups: get: description: |- @@ -48565,7 +48565,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48578,9 +48581,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationProjects --help /api/atlas/v2/orgs/{orgId}/invites: get: description: Returns all pending invitations to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. @@ -48619,7 +48619,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48632,9 +48635,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationInvitations --help patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the username of the invited user. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitation @@ -48671,7 +48671,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48688,9 +48691,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitation --help post: description: Invites one MongoDB Cloud user to join the specified organization. The user must accept the invitation to access information within the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createOrganizationInvitation @@ -48727,7 +48727,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48744,9 +48747,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganizationInvitation --help /api/atlas/v2/orgs/{orgId}/invites/{invitationId}: delete: description: Cancels one pending invitation sent to the specified MongoDB Cloud user to join an organization. You can't cancel an invitation that the user accepted. To use this resource, the requesting API Key must have the Organization Owner role. @@ -48783,7 +48783,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48796,9 +48799,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganizationInvitation --help get: description: Returns the details of one pending invitation to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getOrganizationInvitation @@ -48836,7 +48836,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48849,9 +48852,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the unique identification string for that invitation. Use the Return All Organization Invitations endpoint to retrieve IDs for all pending organization invitations. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitationById @@ -48897,7 +48897,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48914,9 +48917,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitationById --help /api/atlas/v2/orgs/{orgId}/invoices: get: description: |- @@ -49007,7 +49007,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49020,9 +49023,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listInvoices --help /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: get: description: |- @@ -49066,7 +49066,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getInvoice --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49079,9 +49082,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: get: description: |- @@ -49126,7 +49126,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadInvoiceCSV --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49139,9 +49142,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/pending: get: description: Returns all invoices accruing charges for the current billing cycle for the specified organization. To use this resource, the requesting API Key must have the Organization Billing Viewer, Organization Billing Admin, or Organization Owner role. If you have a cross-organization setup, you can view linked invoices if you have the Organization Billing Admin or Organization Owner Role. @@ -49170,7 +49170,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPendingInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49183,9 +49186,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: get: description: Return all projects that you can migrate to the specified organization. @@ -49216,7 +49216,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSourceProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49229,9 +49232,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: delete: description: Remove one organization link and its associated public API key. MongoDB Atlas uses the link-token for push live migrations only. Live migrations (push) let you securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. @@ -49259,7 +49259,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49272,9 +49275,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLinkToken --help post: description: Create one link-token that contains all the information required to complete the link. MongoDB Atlas uses the link-token for push live migrations only. Live migration (push) allows you to securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. operationId: createLinkToken @@ -49309,7 +49309,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49326,9 +49329,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLinkToken --help /api/atlas/v2/orgs/{orgId}/serviceAccounts: get: description: Returns list of Service Accounts with service account details. @@ -49359,7 +49359,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServiceAccounts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49372,9 +49375,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServiceAccounts --help post: description: Create Service Account containing client id and client secrets. operationId: createServiceAccount @@ -49409,7 +49409,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49426,9 +49429,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServiceAccount --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}: delete: description: Delete Service Account. @@ -49461,7 +49461,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49474,9 +49477,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServiceAccount --help get: description: Get Service Account Details. operationId: getServiceAccount @@ -49510,7 +49510,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49523,9 +49526,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Update Service Account. operationId: updateServiceAccount @@ -49568,7 +49568,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49585,9 +49588,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServiceAccount --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups: get: description: Returns list of Service Account projects. @@ -49624,7 +49624,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServiceAccountProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49637,9 +49640,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets: post: description: Create Service Account secret. @@ -49681,7 +49681,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServiceAccountSecret --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49698,9 +49701,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServiceAccountSecret --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}: delete: description: Delete Service Account Secret. @@ -49739,7 +49739,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServiceAccountSecret --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49752,9 +49755,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/settings: get: description: Returns details about the specified organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. @@ -49785,7 +49785,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49798,9 +49801,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganizationSettings --help patch: description: Updates the organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationSettings @@ -49837,7 +49837,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49854,9 +49857,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationSettings --help /api/atlas/v2/orgs/{orgId}/teams: get: description: Returns all teams that belong to the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud only returns teams for which you have access. To use this resource, the requesting API Key must have the Organization Member role. @@ -49893,7 +49893,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49906,9 +49909,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationTeams --help post: description: Creates one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud limits the number of teams to a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -49950,7 +49950,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49967,9 +49970,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the organization specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Organization Owner role. @@ -50012,7 +50012,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50025,9 +50028,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteTeam --help get: description: Returns one team that you identified using its unique 24-hexadecimal digit ID. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -50069,7 +50069,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50082,9 +50085,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 patch: description: Renames one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -50135,7 +50135,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50152,9 +50155,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users: get: description: Returns all MongoDB Cloud users assigned to the team specified using its unique 24-hexadecimal digit identifier. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -50201,7 +50201,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listTeamUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50214,9 +50217,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 post: description: Adds one or more MongoDB Cloud users from the specified organization to the specified team. Teams enable you to grant project access roles to MongoDB Cloud users. You can assign up to 250 MongoDB Cloud users from one organization to one team. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -50269,7 +50269,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50286,9 +50289,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addTeamUser --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified team. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. @@ -50338,7 +50338,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50351,9 +50354,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: get: description: Returns one team that you identified using its human-readable name. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -50393,7 +50393,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50406,9 +50409,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/users: get: description: Returns details about the MongoDB Cloud users associated with the specified organization. Each MongoDB Cloud user returned must belong to the specified organization or to a project within the specified organization. To use this resource, the requesting API Key must have the Organization Member role. @@ -50442,7 +50442,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50455,9 +50458,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationUsers --help /api/atlas/v2/orgs/{orgId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -50498,7 +50498,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeOrganizationUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50511,9 +50514,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeOrganizationUser --help /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified organization. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -50560,7 +50560,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50577,9 +50580,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationRoles --help /api/atlas/v2/users: post: description: |- @@ -50619,7 +50619,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50636,9 +50639,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createUser --help /api/atlas/v2/users/{userId}: get: description: Returns the details for one MongoDB Cloud user account with the specified unique identifier for the user. You can't use this endpoint to return information on an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. You can always retrieve your own user account. If you are the owner of a MongoDB Cloud organization or project, you can also retrieve the user profile for any user with membership in that organization or project. To use this resource, the requesting API Key can have any role. @@ -50675,7 +50675,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50688,9 +50691,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUser --help /api/atlas/v2/users/byName/{userName}: get: description: Returns the details for one MongoDB Cloud user account with the specified username. You can't use this endpoint to return information about an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. To use this resource, the requesting API Key can have any role. @@ -50725,7 +50725,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUserByUsername --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50738,9 +50741,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUserByUsername --help servers: - url: https://cloud.mongodb.com tags: 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 74bdfd57ee..36858b9532 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 @@ -250,18 +250,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getSystemStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -312,18 +312,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationMatchersFieldNames --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -380,18 +380,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listClustersForAllProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -448,18 +448,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listEventTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -507,18 +507,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederationApp --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -578,18 +578,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listConnectedOrgConfigs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -656,18 +656,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api removeConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -732,18 +732,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -819,18 +819,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" } ] } @@ -887,18 +887,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listRoleMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -964,18 +964,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" } ] } @@ -1042,18 +1042,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1121,18 +1121,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1211,18 +1211,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" } ] } @@ -1314,18 +1314,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIdentityProviders --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1391,18 +1391,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" } ] } @@ -1463,18 +1463,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteIdentityProvider --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1539,18 +1539,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1623,18 +1623,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" } ] } @@ -1695,18 +1695,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api revokeJwksFromIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api revokeJwksFromIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1760,18 +1760,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProviderMetadata --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1831,18 +1831,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1922,18 +1922,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" } ] } @@ -2001,18 +2001,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2066,18 +2066,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2129,18 +2129,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2209,18 +2209,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" } ] } @@ -2290,18 +2290,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addUserToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" } ] } @@ -2365,18 +2365,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectIpAccessLists --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2458,18 +2458,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" } ] } @@ -2538,18 +2538,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2619,18 +2619,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2701,18 +2701,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpAccessListStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2772,18 +2772,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2846,18 +2846,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" } ] } @@ -2921,18 +2921,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2997,18 +2997,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3084,18 +3084,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] }, @@ -3174,18 +3174,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] } @@ -3261,18 +3261,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertsByAlertConfigurationId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3348,18 +3348,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlerts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3425,18 +3425,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3515,18 +3515,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api acknowledgeAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -3602,18 +3602,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationsByAlertId --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" } ] } @@ -3677,18 +3677,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3748,18 +3748,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -3829,18 +3829,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -3924,18 +3924,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKeyRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] }, @@ -4010,18 +4010,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -4072,18 +4072,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4146,18 +4146,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" } ] } @@ -4208,18 +4208,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4279,18 +4279,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" } ] } @@ -4351,18 +4351,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listExportBuckets --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-05-30" @@ -4432,18 +4432,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -4511,18 +4511,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -4585,18 +4585,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-05-30" @@ -4651,18 +4651,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4738,18 +4738,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" } ] } @@ -4800,18 +4800,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderAccessRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4875,18 +4875,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" } ] } @@ -4961,18 +4961,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deauthorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -5035,18 +5035,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5128,18 +5128,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api authorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" } ] } @@ -5209,18 +5209,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listClusters --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -5294,18 +5294,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -5385,18 +5385,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderRegions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -5470,18 +5470,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" } ] } @@ -5555,18 +5555,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedClusterToServerless --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" } ] } @@ -5643,18 +5643,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -5722,18 +5722,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -5816,18 +5816,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -5900,18 +5900,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupExportJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5989,18 +5989,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" } ] } @@ -6069,18 +6069,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6152,18 +6152,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6244,18 +6244,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -6333,18 +6333,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api cancelBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -6417,18 +6417,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6492,18 +6492,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllBackupSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-08-05" @@ -6566,18 +6566,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-08-05" @@ -6654,18 +6654,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" } ], "x-sunset": "2025-08-05" @@ -6741,18 +6741,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listReplicaSetBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6827,18 +6827,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api takeSnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" } ] } @@ -6913,18 +6913,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -7000,18 +7000,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7077,18 +7077,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listShardedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7166,18 +7166,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -7253,18 +7253,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -7351,18 +7351,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateSnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -7448,18 +7448,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api downloadSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" } ] } @@ -7542,18 +7542,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" } ] } @@ -7619,18 +7619,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7708,18 +7708,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7785,18 +7785,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackups --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" } ] } @@ -7874,18 +7874,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7958,18 +7958,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupCheckpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8051,18 +8051,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupCheckpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8128,18 +8128,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPinnedNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPinnedNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -8225,18 +8225,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinNamespacesPatch --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinNamespacesPatch --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" } ] }, @@ -8322,18 +8322,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinNamespacesPut --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinNamespacesPut --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" } ] } @@ -8410,18 +8410,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api unpinNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api unpinNamespaces --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" } ] } @@ -8506,18 +8506,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8607,18 +8607,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexesDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8702,18 +8702,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2025-06-01" @@ -8792,18 +8792,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8899,18 +8899,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8979,18 +8979,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -9059,18 +9059,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllCustomZoneMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -9151,18 +9151,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomZoneMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -9250,18 +9250,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -9345,18 +9345,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -9526,18 +9526,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRollingIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" } ] } @@ -9613,18 +9613,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOnlineArchives --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9709,18 +9709,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" } ] } @@ -9823,18 +9823,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadOnlineArchiveQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -9916,18 +9916,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -10010,18 +10010,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10118,18 +10118,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" } ] } @@ -10202,18 +10202,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api endOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10284,18 +10284,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10374,18 +10374,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api startOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" } ] } @@ -10456,18 +10456,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -10552,18 +10552,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -10624,18 +10624,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api testFailover --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" } ] } @@ -10722,18 +10722,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10809,18 +10809,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" } ] } @@ -10899,18 +10899,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -10977,18 +10977,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -11054,18 +11054,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -11145,18 +11145,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -11236,18 +11236,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -11312,18 +11312,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11396,18 +11396,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" } ] } @@ -11494,18 +11494,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacySnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11584,18 +11584,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -11669,18 +11669,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11765,18 +11765,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -11839,18 +11839,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11933,18 +11933,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12080,18 +12080,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12202,18 +12202,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12267,18 +12267,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12356,18 +12356,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainerByCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12439,18 +12439,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" } ] } @@ -12510,18 +12510,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12594,18 +12594,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12667,18 +12667,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12763,18 +12763,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" } ] } @@ -12828,18 +12828,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCustomDatabaseRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12911,18 +12911,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" } ] } @@ -12988,18 +12988,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -13060,18 +13060,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13152,18 +13152,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" } ] } @@ -13230,18 +13230,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listFederatedDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13310,18 +13310,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" } ] } @@ -13381,18 +13381,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -13453,18 +13453,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13545,18 +13545,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" } ] } @@ -13622,18 +13622,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13705,18 +13705,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -13789,18 +13789,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13887,18 +13887,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOneDataFederationQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -13988,18 +13988,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadFederatedDatabaseQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14059,18 +14059,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14294,18 +14294,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" } ] } @@ -14381,18 +14381,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14463,18 +14463,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14565,18 +14565,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" } ] } @@ -14648,18 +14648,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUserCertificates --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14745,18 +14745,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUserCertificate --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" } ] } @@ -14873,18 +14873,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByClusterName --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" } ] } @@ -14998,18 +14998,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByHostname --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15060,18 +15060,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15140,18 +15140,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" } ] } @@ -15214,18 +15214,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15297,18 +15297,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" } ] } @@ -15394,18 +15394,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -15478,18 +15478,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15616,18 +15616,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15702,18 +15702,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15767,18 +15767,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listMetricTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15878,18 +15878,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15992,18 +15992,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16098,18 +16098,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16175,18 +16175,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listThirdPartyIntegrations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16265,18 +16265,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "Atlas CLI", + "source": "atlas api deleteThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -16353,18 +16353,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -16464,18 +16464,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] }, @@ -16572,18 +16572,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] } @@ -16647,18 +16647,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -16726,18 +16726,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -16799,18 +16799,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -16872,18 +16872,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2024-10-04" @@ -16949,18 +16949,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -17037,18 +17037,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -17103,18 +17103,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnAllIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17177,18 +17177,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17269,18 +17269,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -17362,18 +17362,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17466,18 +17466,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -17551,18 +17551,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -17637,18 +17637,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api validateMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" } ], "x-sunset": "2025-05-30" @@ -17719,18 +17719,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getValidationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17790,18 +17790,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17861,18 +17861,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api cutoverMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" } ] } @@ -17920,18 +17920,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "Atlas CLI", + "source": "atlas api resetMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17980,18 +17980,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18051,18 +18051,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" } ] } @@ -18110,18 +18110,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleMaintenanceAutoDefer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" } ] } @@ -18169,18 +18169,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api deferMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" } ] } @@ -18231,18 +18231,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedSlowMs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18293,18 +18293,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "Atlas CLI", + "source": "atlas api disableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18355,18 +18355,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api enableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" } ] } @@ -18478,18 +18478,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLTSVersions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18566,18 +18566,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18650,18 +18650,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" } ] } @@ -18727,18 +18727,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -18802,18 +18802,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18894,18 +18894,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" } ] } @@ -18959,18 +18959,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelines --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19033,18 +19033,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" } ] } @@ -19107,18 +19107,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api deletePipeline --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" } ] }, @@ -19182,18 +19182,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19271,18 +19271,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" } ] } @@ -19351,18 +19351,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19447,18 +19447,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19524,18 +19524,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pausePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" } ] } @@ -19601,18 +19601,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api resumePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" } ] } @@ -19697,18 +19697,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineRuns --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19787,18 +19787,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipelineRunDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -19875,18 +19875,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipelineRun --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19963,18 +19963,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api triggerSnapshotIngestion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" } ] } @@ -20040,18 +20040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" } ] } @@ -20105,18 +20105,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20179,18 +20179,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" } ] } @@ -20255,18 +20255,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20341,18 +20341,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" } ] } @@ -20426,18 +20426,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20509,18 +20509,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20603,18 +20603,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" } ] } @@ -20683,18 +20683,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPrivateEndpointServices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20772,18 +20772,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20862,18 +20862,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20971,18 +20971,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" } ] } @@ -21070,18 +21070,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -21170,18 +21170,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21237,18 +21237,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21316,18 +21316,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api disablePeering --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" } ] } @@ -21393,18 +21393,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDataFederationPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21467,18 +21467,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" } ] } @@ -21544,18 +21544,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -21622,18 +21622,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21693,18 +21693,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasProcesses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21766,18 +21766,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21837,18 +21837,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespacesForHost --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForHost --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21919,18 +21919,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22001,18 +22001,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22122,18 +22122,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22204,18 +22204,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskPartitions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22283,18 +22283,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22413,18 +22413,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22650,18 +22650,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22741,18 +22741,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueryNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22856,18 +22856,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22987,18 +22987,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSuggestedIndexes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23109,18 +23109,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23177,18 +23177,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "Atlas CLI", + "source": "atlas api deletePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23243,18 +23243,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23321,18 +23321,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] }, @@ -23399,18 +23399,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] } @@ -23476,18 +23476,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api loadSampleDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" } ] } @@ -23547,18 +23547,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSampleDatasetLoadStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23618,18 +23618,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23695,18 +23695,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" } ] } @@ -23781,18 +23781,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -23873,18 +23873,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -23962,18 +23962,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24048,18 +24048,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24135,18 +24135,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24209,18 +24209,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24287,18 +24287,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" } ] } @@ -24367,18 +24367,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -24445,18 +24445,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24531,18 +24531,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" } ] } @@ -24602,18 +24602,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectServiceAccounts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectServiceAccounts --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24677,18 +24677,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" } ] } @@ -24752,18 +24752,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectServiceAccount --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -24824,18 +24824,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectServiceAccount --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24910,18 +24910,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] }, @@ -24998,18 +24998,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] } @@ -25066,18 +25066,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25143,18 +25143,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" } ] } @@ -25211,18 +25211,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25285,18 +25285,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" } ] } @@ -25362,18 +25362,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25442,18 +25442,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25531,18 +25531,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" } ] } @@ -25635,18 +25635,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadStreamTenantAuditLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25715,18 +25715,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api listStreamConnections --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" } ] }, @@ -25801,18 +25801,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" } ] } @@ -25887,18 +25887,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25965,18 +25965,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26063,18 +26063,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" } ] } @@ -26143,18 +26143,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26230,18 +26230,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addAllTeamsToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" } ] } @@ -26311,18 +26311,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -26407,18 +26407,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateTeamRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -26469,18 +26469,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26543,18 +26543,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api saveLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" } ] } @@ -26602,18 +26602,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "Atlas CLI", + "source": "atlas api disableCustomerManagedX509 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26664,18 +26664,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26740,18 +26740,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api verifyLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" } ] } @@ -26814,18 +26814,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfigurationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26903,18 +26903,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26980,18 +26980,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -27071,18 +27071,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -27156,18 +27156,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27236,18 +27236,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" } ] } @@ -27307,18 +27307,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27376,18 +27376,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27456,18 +27456,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" } ] } @@ -27531,18 +27531,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27606,18 +27606,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -27684,18 +27684,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27760,18 +27760,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27850,18 +27850,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -27937,18 +27937,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeyAccessListsEntries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28038,18 +28038,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" } ] } @@ -28133,18 +28133,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKeyAccessListEntry --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -28223,18 +28223,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28296,18 +28296,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" } ] } @@ -28382,18 +28382,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess_1 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28492,18 +28492,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28578,18 +28578,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28646,18 +28646,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28731,18 +28731,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28811,18 +28811,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28888,18 +28888,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] }, @@ -28965,18 +28965,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] } @@ -29042,18 +29042,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -29117,18 +29117,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29206,18 +29206,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" } ] } @@ -29359,18 +29359,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -29424,18 +29424,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPendingInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -29507,18 +29507,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getInvoice --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -29583,18 +29583,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadInvoiceCSV --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -29651,18 +29651,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSourceProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -29713,18 +29713,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "Atlas CLI", + "source": "atlas api deleteLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29787,18 +29787,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" } ] } @@ -29858,18 +29858,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", + "label": "Atlas CLI", + "source": "atlas api listServiceAccounts --help" + }, + { + "lang": "cURL", + "label": "curl (Service Accounts)", "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", "label": "curl (Digest)", "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", - "label": "Atlas CLI", - "source": "atlas api listServiceAccounts --help" } ] }, @@ -29932,18 +29932,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" } ] } @@ -30003,18 +30003,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServiceAccount --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -30075,18 +30075,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServiceAccount --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -30161,18 +30161,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] } @@ -30241,18 +30241,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServiceAccountProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServiceAccountProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30326,18 +30326,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServiceAccountSecret --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServiceAccountSecret --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" } ] } @@ -30406,18 +30406,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServiceAccountSecret --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServiceAccountSecret --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -30474,18 +30474,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -30551,18 +30551,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" } ] } @@ -30632,18 +30632,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -30716,18 +30716,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" } ] } @@ -30797,18 +30797,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30881,18 +30881,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -30963,18 +30963,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -31059,18 +31059,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -31152,18 +31152,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listTeamUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -31251,18 +31251,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" } ] } @@ -31344,18 +31344,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api removeTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -31421,18 +31421,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31501,18 +31501,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeOrganizationUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -31592,18 +31592,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -31640,18 +31640,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api returnAllControlPlaneIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllControlPlaneIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31713,18 +31713,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" } ] } @@ -31785,18 +31785,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getUserByUsername --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31859,18 +31859,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUser --help" + "label": "curl (Digest)", + "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\"" } ] } 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 fce2426734..361a51df42 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 @@ -29599,7 +29599,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSystemStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29612,9 +29615,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getSystemStatus --help /api/atlas/v2/alertConfigs/matchers/fieldNames: get: description: Get all field names that the `matchers.fieldName` parameter accepts when you create or update an Alert Configuration. You can successfully call this endpoint with any assigned role. @@ -29642,7 +29642,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationMatchersFieldNames --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29655,9 +29658,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help /api/atlas/v2/clusters: get: description: Returns the details for all clusters in all projects to which you have access. Clusters contain a group of hosts that maintain the same data set. The response does not include multi-cloud clusters. To use this resource, the requesting API Key can have any cluster-level role. @@ -29686,7 +29686,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClustersForAllProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29699,9 +29702,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClustersForAllProjects --help /api/atlas/v2/eventTypes: get: description: Returns a list of all event types, along with a description and additional metadata about each event. @@ -29730,7 +29730,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listEventTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29743,9 +29746,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listEventTypes --help /api/atlas/v2/federationSettings/{federationSettingsId}: delete: description: 'Deletes the federation settings instance and all associated data, including identity providers and domains. To use this resource, the requesting API Key must have the Organization Owner role in the last remaining connected organization. **Note**: requests to this resource will fail if there is more than one connected organization in the federation.' @@ -29772,7 +29772,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederationApp --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29785,9 +29788,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederationApp --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: get: description: Returns all connected org configs in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected orgs. @@ -29819,7 +29819,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listConnectedOrgConfigs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29832,9 +29835,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listConnectedOrgConfigs --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: delete: description: 'Removes one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. Note: This request fails if only one connected organization exists in the federation.' @@ -29874,7 +29874,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29887,9 +29890,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeConnectedOrgConfig --help get: description: Returns the specified connected org config from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. operationId: getConnectedOrgConfig @@ -29928,7 +29928,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29941,9 +29944,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: "Updates one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. \n\n**Note** If the organization configuration has no associated identity provider, you can't use this resource to update role mappings or post authorization role grants. \n\n**Note**: The domainRestrictionEnabled field defaults to false if not provided in the request. \n\n**Note**: If the identityProviderId field is not provided, you will disconnect the organization and the identity provider. \n\n**Note**: Currently connected data access identity providers missing from the dataAccessIdentityProviderIds field will be disconnected." operationId: updateConnectedOrgConfig @@ -29989,7 +29989,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30006,9 +30009,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateConnectedOrgConfig --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings: get: description: Returns all role mappings from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -30039,7 +30039,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listRoleMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30052,9 +30055,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Adds one role mapping to the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createRoleMapping @@ -30091,7 +30091,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30108,9 +30111,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}: delete: description: Removes one role mapping in the specified organization from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -30149,7 +30149,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30162,9 +30165,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns one role mapping from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getRoleMapping @@ -30204,7 +30204,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30217,9 +30220,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 put: description: Updates one role mapping in the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateRoleMapping @@ -30266,7 +30266,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30283,9 +30286,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders: get: description: Returns all identity providers with the provided protocol and type in the specified federation. If no protocol is specified, only SAML identity providers will be returned. If no idpType is specified, only WORKFORCE identity providers will be returned. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -30339,7 +30339,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIdentityProviders --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30352,9 +30355,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listIdentityProviders --help post: description: |- Creates one identity provider within the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -30395,7 +30395,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30412,9 +30415,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}: delete: description: "Deletes one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. \n\n**Note**: Requests to this resource will fail if the identity provider has any connected organizations. Before deleting an identity provider, disconnect all organizations and confirm that no organization in your account uses this identity provider. To learn more, see [Manage Organization Mapping for Federated Authentication](https://www.mongodb.com/docs/atlas/security/manage-org-mapping/)." @@ -30449,7 +30449,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30462,9 +30465,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteIdentityProvider --help get: description: 'Returns one identity provider in the specified federation by the identity provider''s id. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. Deprecated versions: v2-{2023-01-01}' operationId: getIdentityProvider @@ -30502,7 +30502,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30515,9 +30518,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: |- Updates one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -30563,7 +30563,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30580,9 +30583,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks: delete: description: "Revokes the JWKS tokens from the requested OIDC identity provider. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. \n\n**Note**: Revoking your JWKS tokens immediately refreshes your IdP public keys from all your Atlas clusters, invalidating previously signed access tokens and logging out all users. You may need to restart your MongoDB clients. All organizations connected to the identity provider will be affected. To learn more, see [Configure OIDC Authorization](https://www.mongodb.com/docs/atlas/security-oidc/#revoke-jwks)." @@ -30617,7 +30617,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api revokeJwksFromIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30630,9 +30633,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - - label: Atlas CLI - lang: cURL - source: atlas api revokeJwksFromIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: get: description: Returns the metadata of one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -30662,7 +30662,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProviderMetadata --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30675,9 +30678,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups: get: description: Returns details about all projects. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Organization Read Only role or higher. @@ -30708,7 +30708,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30721,9 +30724,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjects --help post: description: Creates one project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Read Write role. operationId: createProject @@ -30771,7 +30771,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30788,9 +30791,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProject --help /api/atlas/v2/groups/{groupId}: delete: description: Removes the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. You can delete a project only if there are no Online Archives for the clusters in the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -30819,7 +30819,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30832,9 +30835,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProject --help get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProject @@ -30862,7 +30862,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30875,9 +30878,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProject --help patch: description: Updates the human-readable label that identifies the specified project, or the tags associated with the project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProject @@ -30916,7 +30916,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30933,9 +30936,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProject --help /api/atlas/v2/groups/{groupId}/access: post: description: Adds one MongoDB Cloud user to the specified project. If the MongoDB Cloud user is not a member of the project's organization, then the user must accept their invitation to the organization to access information within the specified project. If the MongoDB Cloud User is already a member of the project's organization, then they will be added to the project immediately and an invitation will not be returned by this resource. To use this resource, the requesting API Key must have the Group User Admin role. @@ -30974,7 +30974,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addUserToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30991,9 +30994,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addUserToProject --help /api/atlas/v2/groups/{groupId}/accessList: get: description: Returns all access list entries from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -31026,7 +31026,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectIpAccessLists --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31039,9 +31042,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectIpAccessLists --help post: description: Adds one or more access list entries to the specified project. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. Write each entry as either one IP address or one CIDR-notated block of IP addresses. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. This endpoint doesn't support concurrent `POST` requests. You must submit multiple `POST` requests synchronously. externalDocs: @@ -31086,7 +31086,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31103,9 +31106,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectIpAccessList --help /api/atlas/v2/groups/{groupId}/accessList/{entryValue}: delete: description: Removes one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains one IP address, one CIDR-notated block of IP addresses, or one AWS Security Group ID. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Owner role. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -31150,7 +31150,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31163,9 +31166,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectIpAccessList --help get: description: Returns one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. This endpoint (`/groups/{GROUP-ID}/accessList`) manages the Project IP Access List. It doesn't manage the access list for MongoDB Cloud organizations. TheProgrammatic API Keys endpoint (`/orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist`) manages those access lists. externalDocs: @@ -31206,7 +31206,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31219,9 +31222,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: get: description: Returns the status of one project IP access list entry. This resource checks if the provided project IP access list entry applies to all cloud providers serving clusters from the specified project. @@ -31262,7 +31262,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpAccessListStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31275,9 +31278,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/alertConfigs: get: description: |- @@ -31310,7 +31310,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31323,9 +31326,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurations --help post: description: |- Creates one alert configuration for the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -31363,7 +31363,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31380,9 +31383,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}: delete: description: |- @@ -31422,7 +31422,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31435,9 +31438,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteAlertConfiguration --help get: description: |- Returns the specified alert configuration from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -31478,7 +31478,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31491,9 +31494,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: |- Enables or disables the specified alert configuration in the specified project. The resource enables the specified alert configuration if currently enabled. The resource disables the specified alert configuration if currently disabled. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -31543,7 +31543,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31560,9 +31563,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAlertConfiguration --help put: description: |- Updates one alert configuration in the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -31614,7 +31614,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31631,9 +31634,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts: get: description: |- @@ -31678,7 +31678,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertsByAlertConfigurationId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31691,9 +31694,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/alerts: get: description: |- @@ -31737,7 +31737,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlerts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31750,9 +31753,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlerts --help /api/atlas/v2/groups/{groupId}/alerts/{alertId}: get: description: |- @@ -31793,7 +31793,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31806,9 +31809,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: deprecated: true description: |- @@ -31858,7 +31858,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api acknowledgeAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31875,9 +31878,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api acknowledgeAlert --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs: get: @@ -31922,7 +31922,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationsByAlertId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31935,9 +31938,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/apiKeys: get: description: Returns all organization API keys that you assigned to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. @@ -31970,7 +31970,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31983,9 +31986,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectApiKeys --help post: description: Creates and assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: createProjectApiKey @@ -32018,7 +32018,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32035,9 +32038,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectApiKey --help /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32078,7 +32078,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32091,9 +32094,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectApiKey --help patch: description: Updates the roles of the organization API key that you specify for the project that you specify. You must specify at least one valid role for the project. The application removes any roles that you do not include in this request if they were previously set in the organization API key that you specify for the project. operationId: updateApiKeyRoles @@ -32140,7 +32140,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKeyRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32157,9 +32160,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKeyRoles --help post: description: Assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can then use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: addProjectApiKey @@ -32203,7 +32203,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32220,9 +32223,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectApiKey --help /api/atlas/v2/groups/{groupId}/auditLog: get: description: Returns the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. @@ -32249,7 +32249,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32262,9 +32265,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAuditingConfiguration --help patch: description: Updates the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. operationId: updateAuditingConfiguration @@ -32299,7 +32299,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32316,9 +32319,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAuditingConfiguration --help /api/atlas/v2/groups/{groupId}/awsCustomDNS: get: description: Returns the custom DNS configuration for AWS clusters in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -32345,7 +32345,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32358,9 +32361,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAWSCustomDNS --help patch: description: Enables or disables the custom DNS configuration for AWS clusters in the specified project. Enable custom DNS if you use AWS VPC peering and use your own DNS servers. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: toggleAWSCustomDNS @@ -32393,7 +32393,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32410,9 +32413,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAWSCustomDNS --help /api/atlas/v2/groups/{groupId}/backup/exportBuckets: get: deprecated: true @@ -32443,7 +32443,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listExportBuckets --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32456,9 +32459,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2025-05-30" post: deprecated: true @@ -32499,7 +32499,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32516,9 +32519,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createExportBucket --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}: delete: @@ -32559,7 +32559,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32572,9 +32575,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteExportBucket --help get: deprecated: true description: Returns one AWS S3 Bucket or Azure Blob Storage Container associated with the specified Project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -32612,7 +32612,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32625,9 +32628,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/backupCompliancePolicy: get: @@ -32657,7 +32657,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32670,9 +32673,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getDataProtectionSettings --help put: description: 'Updates the Backup Compliance Policy settings for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' operationId: updateDataProtectionSettings @@ -32716,7 +32716,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32733,9 +32736,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDataProtectionSettings --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess: get: description: Returns all cloud provider access roles with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32762,7 +32762,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderAccessRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32775,9 +32778,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listCloudProviderAccessRoles --help post: description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -32813,7 +32813,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32830,9 +32833,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}: delete: description: Revokes access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. @@ -32876,7 +32876,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deauthorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32889,9 +32892,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - - label: Atlas CLI - lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: get: description: Returns the access role with the specified id and with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32927,7 +32927,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32940,9 +32943,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Grants access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. This API endpoint is one step in a procedure to create unified access for MongoDB Cloud services. externalDocs: @@ -32991,7 +32991,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api authorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33008,9 +33011,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/clusters: get: deprecated: true @@ -33047,7 +33047,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClusters --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33060,9 +33063,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClusters --help x-sunset: "2026-03-01" post: deprecated: true @@ -33105,7 +33105,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33122,9 +33125,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCluster --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}: delete: @@ -33170,7 +33170,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33183,9 +33186,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCluster --help get: deprecated: true description: 'Returns the details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. The response includes clusters with asymmetrically-sized shards. To use this resource, the requesting API Key must have the Project Read Only role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-01-01}' @@ -33225,7 +33225,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33238,9 +33241,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -33290,7 +33290,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33307,9 +33310,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCluster --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements: get: @@ -33400,7 +33400,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33413,9 +33416,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces: get: description: Return the subset of namespaces from the given cluster sorted by highest total execution time (descending) within the given time window. @@ -33463,7 +33463,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespacesForCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33476,9 +33479,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: get: description: Returns all Cloud Backup snapshot export jobs associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -33517,7 +33517,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupExportJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33530,9 +33533,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Exports one backup snapshot for dedicated Atlas cluster using Cloud Backups to an Export Bucket. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: createBackupExportJob @@ -33579,7 +33579,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33596,9 +33599,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupExportJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}: get: description: Returns one Cloud Backup snapshot export job associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -33639,7 +33639,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33652,9 +33655,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: get: description: Returns all cloud backup restore jobs for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33693,7 +33693,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33706,9 +33709,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: |- Restores one snapshot of one cluster from the specified project. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -33759,7 +33759,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33776,9 +33779,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}: delete: description: Cancels one cloud backup restore job of one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33825,7 +33825,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cancelBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33838,9 +33841,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns one cloud backup restore job for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: getBackupRestoreJob @@ -33884,7 +33884,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33897,9 +33900,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: delete: deprecated: true @@ -33937,7 +33937,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllBackupSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33950,9 +33953,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2025-08-05" get: deprecated: true @@ -33989,7 +33989,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34002,9 +34005,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2025-08-05" patch: deprecated: true @@ -34053,7 +34053,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34070,9 +34073,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateBackupSchedule --help x-sunset: "2025-08-05" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots: get: @@ -34114,7 +34114,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listReplicaSetBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34125,11 +34128,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -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 + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" post: description: |- Takes one on-demand snapshot for the specified cluster. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -34176,7 +34176,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api takeSnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34193,9 +34196,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api takeSnapshot --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}: delete: description: Removes the specified snapshot. To use this resource, the requesting API Key must have the Project Owner role. @@ -34242,7 +34242,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34255,9 +34258,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns one snapshot from the specified cluster. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getReplicaSetBackup @@ -34303,7 +34303,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34316,9 +34319,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Changes the expiration date for one cloud backup snapshot for one cluster in the specified project. operationId: updateSnapshotRetention @@ -34371,7 +34371,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateSnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34388,9 +34391,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateSnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}: delete: description: Removes one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -34435,7 +34435,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34448,9 +34451,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getShardedClusterBackup @@ -34496,7 +34496,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34509,9 +34512,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: get: description: Returns all snapshots of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34549,7 +34549,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listShardedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34562,9 +34565,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: post: description: Requests one snapshot for the specified shared cluster. This resource returns a `snapshotURL` that you can use to download the snapshot. This `snapshotURL` remains active for four hours after you make the request. To use this resource, the requesting API Key must have the Project Owner role. @@ -34615,7 +34615,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34632,9 +34635,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api downloadSharedClusterBackup --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore: post: description: Restores the specified cluster. MongoDB Cloud limits which clusters can be the target clusters of a restore. The target cluster can't use encryption at rest, run a major release MongoDB version different than the snapshot, or receive client requests during restores. MongoDB Cloud deletes all existing data on the target cluster prior to the restore operation. To use this resource, the requesting API Key must have the Project Owner role. @@ -34683,7 +34683,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34700,9 +34703,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores: get: description: Returns all restore jobs for the specified M2 or M5 cluster. Restore jobs restore a cluster using a snapshot. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34740,7 +34740,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34753,9 +34756,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: get: description: Returns the specified restore job. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34802,7 +34802,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34815,9 +34818,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: get: description: Returns details for all snapshots for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34855,7 +34855,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34868,9 +34871,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: get: description: Returns details for one snapshot for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34917,7 +34917,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34930,9 +34933,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: get: deprecated: true @@ -34972,7 +34972,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupCheckpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34985,9 +34988,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: get: deprecated: true @@ -35037,7 +35037,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupCheckpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35050,9 +35053,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned: get: description: Returns a list of given cluster's pinned namespaces, a set of namespaces manually selected by users to collect query latency metrics on. @@ -35091,7 +35091,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPinnedNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35104,9 +35107,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Add provided list of namespaces to existing pinned namespaces list for collection-level latency metrics collection for the given Group and Cluster operationId: pinNamespacesPatch @@ -35158,7 +35158,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinNamespacesPatch --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35175,9 +35178,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinNamespacesPatch --help put: description: Pin provided list of namespaces for collection-level latency metrics collection for the given Group and Cluster. This initializes a pinned namespaces list or replaces any existing pinned namespaces list for the Group and Cluster. operationId: pinNamespacesPut @@ -35229,7 +35229,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinNamespacesPut --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35246,9 +35249,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinNamespacesPut --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin: patch: description: Unpin provided list of namespaces for collection-level latency metrics collection for the given Group and Cluster @@ -35294,7 +35294,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api unpinNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35311,9 +35314,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api unpinNamespaces --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes: post: deprecated: true @@ -35364,7 +35364,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35381,9 +35384,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}: get: @@ -35438,7 +35438,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexesDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35451,9 +35454,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}: delete: @@ -35505,7 +35505,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35518,9 +35521,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2025-06-01" get: deprecated: true @@ -35569,7 +35569,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35582,9 +35585,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2025-06-01" patch: deprecated: true @@ -35644,7 +35644,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35661,9 +35664,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites: get: @@ -35704,7 +35704,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35717,9 +35720,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping: delete: @@ -35760,7 +35760,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllCustomZoneMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35773,9 +35776,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2026-03-01" post: deprecated: true @@ -35824,7 +35824,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomZoneMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35841,9 +35844,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomZoneMapping --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces: delete: @@ -35896,7 +35896,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35909,9 +35912,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2026-03-01" post: deprecated: true @@ -35962,7 +35962,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35979,9 +35982,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createManagedNamespace --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index: post: @@ -36093,7 +36093,10 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRollingIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36110,9 +36113,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRollingIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives: get: description: Returns details of all online archives. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36154,7 +36154,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOnlineArchives --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36167,9 +36170,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Creates one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -36220,7 +36220,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36237,9 +36240,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}: delete: description: Removes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. @@ -36289,7 +36289,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36302,9 +36305,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns one online archive for one cluster. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. externalDocs: @@ -36355,7 +36355,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36368,9 +36371,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates, pauses, or resumes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -36430,7 +36430,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36447,9 +36450,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz: get: description: 'Downloads query logs for the specified online archive. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -36515,7 +36515,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadOnlineArchiveQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36528,9 +36531,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation: delete: description: Ends a cluster outage simulation. @@ -36573,7 +36573,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api endOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36586,9 +36589,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - - label: Atlas CLI - lang: cURL - source: atlas api endOutageSimulation --help get: description: Returns one outage simulation for one cluster. externalDocs: @@ -36630,7 +36630,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36643,9 +36646,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Starts a cluster outage simulation. externalDocs: @@ -36692,7 +36692,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api startOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36709,9 +36712,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api startOutageSimulation --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs: get: deprecated: true @@ -36753,7 +36753,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36766,9 +36769,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -36820,7 +36820,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36837,9 +36840,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries: post: @@ -36874,7 +36874,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api testFailover --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36889,11 +36892,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ - -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api testFailover --help + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs: get: deprecated: true @@ -36946,7 +36946,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36959,9 +36962,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: deprecated: true description: Restores one legacy backup for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). This endpoint doesn't support creating checkpoint restore jobs for sharded clusters, or creating restore jobs for queryable backup snapshots. If you create an automated restore job by specifying `delivery.methodName` of `AUTOMATED_RESTORE` in your request body, MongoDB Cloud removes all existing data on the target cluster prior to the restore. @@ -37006,7 +37006,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37023,9 +37026,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLegacyBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}: get: deprecated: true @@ -37076,7 +37076,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37089,9 +37092,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: delete: deprecated: true @@ -37130,7 +37130,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37143,9 +37146,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2026-03-01" get: deprecated: true @@ -37184,7 +37184,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37197,9 +37200,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -37247,7 +37247,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37264,9 +37267,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchDeployment --help x-sunset: "2026-03-01" post: deprecated: true @@ -37314,7 +37314,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37331,9 +37334,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchDeployment --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule: get: @@ -37374,7 +37374,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37387,9 +37390,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: deprecated: true description: |- @@ -37435,7 +37435,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37452,9 +37455,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotSchedule --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots: get: deprecated: true @@ -37504,7 +37504,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacySnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37517,9 +37520,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: delete: deprecated: true @@ -37567,7 +37567,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37580,9 +37583,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: deprecated: true description: Returns one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -37627,7 +37627,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37640,9 +37643,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: deprecated: true description: Changes the expiration date for one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -37694,7 +37694,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37711,9 +37714,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status: get: description: Returns the status of all changes that you made to the specified cluster in the specified project. Use this resource to check the progress MongoDB Cloud has made in processing your changes. The response does not include the deployment of new dedicated clusters. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37749,7 +37749,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37762,9 +37765,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: get: description: 'Returns a compressed (.gz) log file that contains a range of log messages for the specified host for the specified project. MongoDB updates process and audit logs from the cluster backend infrastructure every five minutes and contain log data from the previous five minutes. If you poll the API for log files, we recommend polling every five minutes. For example, if the logs are updated at 4:00 UTC and then you poll the API, the API returns log data from the interval between 3:55 UTC and 4:00 UTC. This feature isn''t available for `M0` free clusters, `M2`, `M5`, or serverless clusters. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip". Deprecated versions: v2-{2023-01-01}' @@ -37835,7 +37835,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37848,9 +37851,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/provider/regions: get: description: Returns the list of regions available for the specified cloud provider at the specified tier. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37892,7 +37892,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderRegions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37905,9 +37908,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: post: description: Upgrades a shared-tier cluster in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. Each project supports up to 25 clusters. @@ -37949,7 +37949,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37966,9 +37969,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedCluster --help /api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless: post: description: Upgrades a shared-tier cluster to a serverless instance in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. @@ -38010,7 +38010,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedClusterToServerless --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38027,9 +38030,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedClusterToServerless --help /api/atlas/v2/groups/{groupId}/collStats/metrics: get: description: Returns all available Coll Stats Latency metric names and their respective units for the specified project at the time of request. @@ -38059,7 +38059,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38072,9 +38075,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/containers: get: description: Returns details about all network peering containers in the specified project for the specified cloud provider. If you do not specify the cloud provider, MongoDB Cloud returns details about all network peering containers in the project for Amazon Web Services (AWS). To use this resource, the requesting API Key must have the Project Read Only role. @@ -38117,7 +38117,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainerByCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38130,9 +38133,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help post: description: Creates one new network peering container in the specified project. MongoDB Cloud can deploy Network Peering connections in a network peering container. GCP can have one container per project. AWS and Azure can have one container per cloud provider region. To use this resource, the requesting API Key must have the Project Owner role. operationId: createPeeringContainer @@ -38173,7 +38173,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38190,9 +38193,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/{containerId}: delete: description: Removes one network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -38235,7 +38235,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38248,9 +38251,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringContainer --help get: description: Returns details about one network peering container in one specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringContainer @@ -38286,7 +38286,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38299,9 +38302,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates the network details and labels of one specified network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringContainer @@ -38352,7 +38352,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38369,9 +38372,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/all: get: description: Returns details about all network peering containers in the specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. @@ -38401,7 +38401,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38414,9 +38417,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/customDBRoles/roles: get: description: Returns all custom roles for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -38445,7 +38445,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCustomDatabaseRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38458,9 +38461,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Creates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createCustomDatabaseRole @@ -38501,7 +38501,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38518,9 +38521,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}: delete: description: Removes one custom role from the specified project. You can't remove a custom role that would leave one or more child roles with no parent roles or actions. You also can't remove a custom role that would leave one or more database users without roles. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -38557,7 +38557,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38570,9 +38573,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCustomDatabaseRole --help get: description: Returns one custom role for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getCustomDatabaseRole @@ -38606,7 +38606,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38619,9 +38622,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateCustomDatabaseRole @@ -38668,7 +38668,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38685,9 +38688,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/dataFederation: get: description: Returns the details of all federated database instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only or higher role. @@ -38725,7 +38725,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listFederatedDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38738,9 +38741,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listFederatedDatabases --help post: description: Creates one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createFederatedDatabase @@ -38779,7 +38779,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38796,9 +38799,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}: delete: description: Removes one federated database instance from the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. @@ -38831,7 +38831,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38844,9 +38847,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederatedDatabase --help get: description: Returns the details of one federated database instance within the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getFederatedDatabase @@ -38881,7 +38881,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38894,9 +38897,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates the details of one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or higher role. operationId: updateFederatedDatabase @@ -38943,7 +38943,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38960,9 +38963,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits: get: description: Returns query limits for a federated databases instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -38999,7 +38999,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39012,9 +39015,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: delete: description: Deletes one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -39065,7 +39065,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOneDataFederationInstanceQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39078,9 +39081,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns the details of one query limit for the specified federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: returnFederatedDatabaseQueryLimit @@ -39131,7 +39131,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39144,9 +39147,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Creates or updates one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: createOneDataFederationQueryLimit @@ -39207,7 +39207,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOneDataFederationQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39224,9 +39227,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOneDataFederationQueryLimit --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz: get: description: 'Downloads the query logs for the specified federated database instance. To use this resource, the requesting API Key must have the Project Owner or Project Data Access Read Write roles. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -39283,7 +39283,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadFederatedDatabaseQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39296,9 +39299,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/databaseUsers: get: description: Returns all database users that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39328,7 +39328,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39341,9 +39344,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listDatabaseUsers --help post: description: Creates one database user in the specified project. This MongoDB Cloud supports a maximum of 100 database users per project. If you require more than 100 database users on a project, contact [Support](https://cloud.mongodb.com/support). To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createDatabaseUser @@ -39475,7 +39475,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39490,11 +39493,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ - -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUser --help + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}: delete: description: Removes one database user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -39551,7 +39551,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39564,9 +39567,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDatabaseUser --help get: description: Returns one database user that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getDatabaseUser @@ -39620,7 +39620,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39633,9 +39636,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates one database user that belongs to the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: updateDatabaseUser @@ -39702,7 +39702,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39719,9 +39722,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs: get: description: Returns all unexpired X.509 certificates for the specified MongoDB user. This MongoDB user belongs to one project. Atlas manages these certificates and the MongoDB user. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39759,7 +39759,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUserCertificates --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39772,9 +39775,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: |- Generates one X.509 certificate for the specified MongoDB user. Atlas manages the certificate and MongoDB user that belong to one project. To use this resource, the requesting API Key must have the Project Owner role. @@ -39830,7 +39830,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUserCertificate --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39847,9 +39850,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUserCertificate --help /api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}: get: description: Returns the access logs of one cluster identified by the cluster's name. Access logs contain a list of authentication requests made against your cluster. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -39922,7 +39922,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByClusterName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39935,9 +39938,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: get: description: Returns the access logs of one cluster identified by the cluster's hostname. Access logs contain a list of authentication requests made against your clusters. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -40007,7 +40007,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByHostname --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40020,9 +40023,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/encryptionAtRest: get: description: |- @@ -40052,7 +40052,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40065,9 +40068,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getEncryptionAtRest --help patch: description: |- Updates the configuration for encryption at rest using the keys you manage through your cloud provider. MongoDB Cloud encrypts all storage even if you don't use your own key management. This resource requires the requesting API Key to have the Project Owner role. This feature isn't available for `M0` free clusters, `M2`, `M5`, or serverless clusters. @@ -40118,7 +40118,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40135,9 +40138,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateEncryptionAtRest --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints: get: description: Returns the private endpoints of the specified cloud provider for encryption at rest using customer key management. @@ -40172,7 +40172,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40185,9 +40188,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Creates a private endpoint in the specified region for encryption at rest using customer key management. operationId: createEncryptionAtRestPrivateEndpoint @@ -40228,7 +40228,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40245,9 +40248,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}: delete: description: Deletes one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. @@ -40298,7 +40298,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40311,9 +40314,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. operationId: getEncryptionAtRestPrivateEndpoint @@ -40356,7 +40356,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40369,9 +40372,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/events: get: description: |- @@ -40455,7 +40455,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40468,9 +40471,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectEvents --help /api/atlas/v2/groups/{groupId}/events/{eventId}: get: description: |- @@ -40517,7 +40517,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40530,9 +40533,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: get: description: Returns all Atlas Search metric types available for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -40561,7 +40561,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listMetricTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40574,9 +40577,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: get: description: Returns the Atlas Search metrics data series within the provided time range for one namespace and index name on the specified process. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -40635,7 +40635,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40648,9 +40651,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: get: description: Returns the Atlas Search index metrics within the specified time range for one namespace in the specified process. @@ -40708,7 +40708,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40721,9 +40724,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: get: description: Returns the Atlas Search hardware and status data series within the provided time range for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -40780,7 +40780,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40793,9 +40796,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/integrations: get: description: Returns the settings that permit integrations with all configured third-party services. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -40829,7 +40829,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listThirdPartyIntegrations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40842,9 +40845,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listThirdPartyIntegrations --help /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: delete: description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -40893,7 +40893,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40906,9 +40909,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteThirdPartyIntegration --help get: description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: getThirdPartyIntegration @@ -40956,7 +40956,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40969,9 +40972,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: createThirdPartyIntegration @@ -41031,7 +41031,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41048,9 +41051,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createThirdPartyIntegration --help put: description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: updateThirdPartyIntegration @@ -41108,7 +41108,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41125,9 +41128,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateThirdPartyIntegration --help /api/atlas/v2/groups/{groupId}/invites: get: deprecated: true @@ -41163,7 +41163,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41176,9 +41179,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectInvitations --help x-sunset: "2024-10-04" patch: deprecated: true @@ -41217,7 +41217,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41234,9 +41237,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitation --help x-sunset: "2024-10-04" post: deprecated: true @@ -41271,7 +41271,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41288,9 +41291,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectInvitation --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/invites/{invitationId}: delete: @@ -41327,7 +41327,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41340,9 +41343,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectInvitation --help x-sunset: "2024-10-04" get: deprecated: true @@ -41381,7 +41381,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41394,9 +41397,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 x-sunset: "2024-10-04" patch: deprecated: true @@ -41443,7 +41443,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41460,9 +41463,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitationById --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/ipAddresses: get: @@ -41492,7 +41492,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41505,9 +41508,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllIPAddresses --help /api/atlas/v2/groups/{groupId}/limits: get: description: Returns all the limits for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41542,7 +41542,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41555,9 +41558,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectLimits --help /api/atlas/v2/groups/{groupId}/limits/{limitName}: delete: description: Removes the specified project limit. Depending on the limit, Atlas either resets the limit to its default value or removes the limit entirely. To use this resource, the requesting API Key must have the Project Owner role. @@ -41624,7 +41624,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41637,9 +41640,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectLimit --help get: description: Returns the specified limit for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProjectLimit @@ -41707,7 +41707,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41720,9 +41723,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: |- Sets the specified project limit. To use this resource, the requesting API Key must have the Project Owner role. @@ -41800,7 +41800,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41817,9 +41820,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setProjectLimit --help /api/atlas/v2/groups/{groupId}/liveMigrations: post: deprecated: true @@ -41869,7 +41869,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41886,9 +41889,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushMigration --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}: get: @@ -41921,7 +41921,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41934,9 +41937,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: put: description: Cut over the migrated cluster to MongoDB Atlas. Confirm when the cut over completes. When the cut over completes, MongoDB Atlas completes the live migration process and stops synchronizing with the source cluster. Your API Key must have the Organization Owner role to successfully call this resource. @@ -41968,7 +41968,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cutoverMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41985,9 +41988,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api cutoverMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/validate: post: deprecated: true @@ -42030,7 +42030,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api validateMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42047,9 +42050,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api validateMigration --help x-sunset: "2025-05-30" /api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}: get: @@ -42092,7 +42092,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getValidationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42105,9 +42108,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/maintenanceWindow: delete: description: Resets the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -42133,7 +42133,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resetMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42146,9 +42149,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - - label: Atlas CLI - lang: cURL - source: atlas api resetMaintenanceWindow --help get: description: Returns the maintenance window for the specified project. MongoDB Cloud starts those maintenance activities when needed. You can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: getMaintenanceWindow @@ -42174,7 +42174,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42185,11 +42188,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getMaintenanceWindow --help + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" patch: description: Updates the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateMaintenanceWindow @@ -42223,7 +42223,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42240,9 +42243,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer: post: description: Toggles automatic deferral of the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -42268,7 +42268,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleMaintenanceAutoDefer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42285,9 +42288,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/defer: post: description: Defers the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -42313,7 +42313,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deferMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42330,9 +42333,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api deferMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/managedSlowMs: get: description: Get whether the Managed Slow MS feature is enabled. @@ -42359,7 +42359,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedSlowMs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42372,9 +42375,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getManagedSlowMs --help /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: delete: description: Disables the slow operation threshold that MongoDB Cloud calculated for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -42401,7 +42401,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42414,9 +42417,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - - label: Atlas CLI - lang: cURL - source: atlas api disableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: post: description: Enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -42443,7 +42443,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api enableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42460,9 +42463,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api enableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/mongoDBVersions: get: description: Returns the MongoDB Long Term Support Major Versions available to new clusters in this project. @@ -42530,7 +42530,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLTSVersions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42543,9 +42546,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectLTSVersions --help /api/atlas/v2/groups/{groupId}/peers: get: description: Returns details about all network peering connections in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42587,7 +42587,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42600,9 +42603,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringConnections --help post: description: Creates one new network peering connection in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations and prerequisites, see the Network Peering Documentation. externalDocs: @@ -42644,7 +42644,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42661,9 +42664,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringConnection --help /api/atlas/v2/groups/{groupId}/peers/{peerId}: delete: description: Removes one network peering connection in the specified project. If you Removes the last network peering connection associated with a project, MongoDB Cloud also removes any AWS security groups from the project IP access list. To use this resource, the requesting API Key must have the Project Owner role. @@ -42701,7 +42701,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42714,9 +42717,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringConnection --help get: description: Returns details about one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringConnection @@ -42753,7 +42753,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42766,9 +42769,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringConnection @@ -42816,7 +42816,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42833,9 +42836,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringConnection --help /api/atlas/v2/groups/{groupId}/pipelines: get: description: Returns a list of Data Lake Pipelines. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42865,7 +42865,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelines --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42878,9 +42881,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPipelines --help post: description: Creates one Data Lake Pipeline. operationId: createPipeline @@ -42916,7 +42916,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42933,9 +42936,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}: delete: description: Removes one Data Lake Pipeline. @@ -42972,7 +42972,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42985,9 +42988,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePipeline --help get: description: Returns the details of one Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipeline @@ -43024,7 +43024,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43037,9 +43040,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates one Data Lake Pipeline. operationId: updatePipeline @@ -43086,7 +43086,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43103,9 +43106,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules: get: description: Returns a list of backup schedule policy items that you can use as a Data Lake Pipeline source. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43145,7 +43145,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43158,9 +43161,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: get: description: Returns a list of backup snapshots that you can use to trigger an on demand pipeline run. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43208,7 +43208,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43221,9 +43224,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: post: description: Pauses ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43261,7 +43261,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pausePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43278,9 +43281,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pausePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume: post: description: Resumes ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43318,7 +43318,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resumePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43335,9 +43338,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api resumePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs: get: description: Returns a list of past Data Lake Pipeline runs. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43385,7 +43385,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineRuns --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43398,9 +43401,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: delete: description: Deletes dataset that Atlas generated during the specified pipeline run. @@ -43448,7 +43448,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipelineRunDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43461,9 +43464,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns the details of one Data Lake Pipeline run within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipelineRun @@ -43510,7 +43510,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipelineRun --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43523,9 +43526,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: post: description: Triggers a Data Lake Pipeline ingestion of a specified snapshot. @@ -43570,7 +43570,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api triggerSnapshotIngestion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43587,9 +43590,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api triggerSnapshotIngestion --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService: get: description: Returns the name, interfaces, and state of all private endpoint services for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43629,7 +43629,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPrivateEndpointServices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43642,9 +43645,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: delete: description: Removes one private endpoint service from the specified project. This cloud service provider manages the private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -43691,7 +43691,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43704,9 +43707,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns the name, interfaces, and state of the specified private endpoint service from one project. The cloud service provider hosted this private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpointService @@ -43754,7 +43754,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43767,9 +43770,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: post: description: Creates one private endpoint for the specified cloud service provider. This cloud service provider manages the private endpoint service, which in turn manages the private endpoints for the project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations, limitations, and prerequisites, see the MongoDB documentation for setting up a private endpoint. @@ -43829,7 +43829,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43846,9 +43849,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}: delete: description: Removes one private endpoint from the specified project and private endpoint service, as managed by the specified cloud service provider. When the last private endpoint is removed from a given private endpoint service, that private endpoint service is also removed. To use this resource, the requesting API Key must have the Project Owner role. @@ -43902,7 +43902,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43915,9 +43918,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns the connection state of the specified private endpoint. The private endpoint service manages this private endpoint which belongs to one project hosted from one cloud service provider. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpoint @@ -43972,7 +43972,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43985,9 +43988,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: post: description: Creates one private endpoint service for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. When you create a private endpoint service, MongoDB Cloud creates a network container in the project for the cloud provider for which you create the private endpoint service if one doesn't already exist. To learn more about private endpoint terminology in MongoDB Cloud, see Private Endpoint Concepts. To use this resource, the requesting API Key must have the Project Owner role. @@ -44024,7 +44024,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44041,9 +44044,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpointService --help /api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode: get: description: Checks whether each region in the specified cloud service provider can create multiple private endpoints per region. The cloud service provider manages the private endpoint for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44072,7 +44072,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44085,9 +44088,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Enables or disables the ability to create multiple private endpoints per region in all cloud service providers in one project. The cloud service provider manages the private endpoints for the project. Connection strings to existing multi-region and global sharded clusters change when you enable this setting. You must update your applications to use the new connection strings. This might cause downtime. To use this resource, the requesting API Key must have the Project Owner role and all clusters in the deployment must be sharded clusters. Once enabled, you cannot create replica sets. operationId: toggleRegionalizedPrivateEndpointSetting @@ -44122,7 +44122,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44139,9 +44142,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint: get: description: Returns all private endpoints for one serverless instance. You must have at least the Project Read Only role for the project to successfully call this resource. @@ -44179,7 +44179,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44192,9 +44195,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: |- Creates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -44242,7 +44242,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44259,9 +44262,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}: delete: description: Remove one private endpoint from one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -44306,7 +44306,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44319,9 +44322,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Return one private endpoint for one serverless instance. Identify this endpoint using its unique ID. You must have at least the Project Read Only role for the project to successfully call this resource. operationId: getServerlessPrivateEndpoint @@ -44365,7 +44365,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44378,9 +44381,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessPrivateEndpoint @@ -44431,7 +44431,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44448,9 +44451,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateIpMode: get: deprecated: true @@ -44481,7 +44481,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44494,9 +44497,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help patch: deprecated: true description: Disables Connect via Peering Only mode for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -44535,7 +44535,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disablePeering --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44552,9 +44555,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api disablePeering --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds: get: description: Returns all private endpoints for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. @@ -44588,7 +44588,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDataFederationPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44599,11 +44602,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -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 + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" post: description: |- Adds one private endpoint for Federated Database Instances and Online Archives to the specified projects. If the endpoint ID already exists and the associated comment is unchanged, Atlas Data Federation makes no change to the endpoint ID list. If the endpoint ID already exists and the associated comment is changed, Atlas Data Federation updates the comment value only in the endpoint ID list. If the endpoint ID doesn't exist, Atlas Data Federation appends the new endpoint to the list of endpoints in the endpoint ID list. Each region has an associated service name for the various endpoints in each region. @@ -44657,7 +44657,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44674,9 +44677,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}: delete: description: Removes one private endpoint for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -44714,7 +44714,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44727,9 +44730,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help get: description: Returns the specified private endpoint for Federated Database Instances or Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getDataFederationPrivateEndpoint @@ -44768,7 +44768,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44781,9 +44784,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes: get: description: Returns details of all processes for the specified project. A MongoDB process can be either a `mongod` or `mongos`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44813,7 +44813,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasProcesses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44826,9 +44829,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAtlasProcesses --help /api/atlas/v2/groups/{groupId}/processes/{processId}: get: description: Returns the processes for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44863,7 +44863,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44876,9 +44879,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements: get: description: Get a list of the Coll Stats Latency process-level measurements for the given namespace @@ -44948,7 +44948,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44961,9 +44964,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces: get: description: Return the subset of namespaces from the given process ranked by highest total execution time (descending) within the given time window. @@ -44993,7 +44993,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespacesForHost --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45006,9 +45009,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: get: description: Returns the list of databases running on the specified host for the specified project. `M0` free clusters, `M2`, `M5`, and serverless clusters have some [operational limits](https://www.mongodb.com/docs/atlas/reference/free-shared-limitations/#operational-limitations). The MongoDB Cloud process must be a `mongod`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45046,7 +45046,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45059,9 +45062,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: get: description: Returns one database running on the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45102,7 +45102,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45115,9 +45118,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: get: description: Returns the measurements of one database for the specified host for the specified project. Returns the database's on-disk storage space based on the MongoDB `dbStats` command output. To calculate some metric series, Atlas takes the rate between every two adjacent points. For these metric series, the first data point has a null value because Atlas can't calculate a rate for the first data point given the query time range. Atlas retrieves database metrics every 20 minutes but reduces frequency when necessary to optimize database performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45184,7 +45184,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45197,9 +45200,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: get: description: Returns the list of disks or partitions for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45237,7 +45237,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskPartitions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45250,9 +45253,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: get: description: Returns measurement details for one disk or partition for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45292,7 +45292,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45305,9 +45308,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: get: description: |- @@ -45390,7 +45390,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45403,9 +45406,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: get: description: |- @@ -45599,7 +45599,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45612,9 +45615,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: get: description: Returns up to 20 namespaces for collections experiencing slow queries on the specified host. If you specify a secondary member of a replica set that hasn't received any database read operations, the endpoint doesn't return any namespaces. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45669,7 +45669,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueryNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45682,9 +45685,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: get: description: Returns log lines for slow queries that the Performance Advisor and Query Profiler identified. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. MongoDB Cloud bases the threshold for slow queries on the average time of operations on your cluster. This enables workload-relevant recommendations. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -45756,7 +45756,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45769,9 +45772,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: get: description: Returns the indexes that the Performance Advisor suggests. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45850,7 +45850,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSuggestedIndexes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45863,9 +45866,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/pushBasedLogExport: delete: description: Disables the push-based log export feature by resetting the project level settings to its default configuration. @@ -45896,7 +45896,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45909,9 +45912,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - - label: Atlas CLI - lang: cURL - source: atlas api deletePushBasedLogConfiguration --help get: description: Fetches the current project level settings for the push-based log export feature. operationId: getPushBasedLogConfiguration @@ -45941,7 +45941,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45954,9 +45957,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getPushBasedLogConfiguration --help patch: description: Updates the project level settings for the push-based log export feature. operationId: updatePushBasedLogConfiguration @@ -45994,7 +45994,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46011,9 +46014,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePushBasedLogConfiguration --help post: description: Configures the project level settings for the push-based log export feature. operationId: createPushBasedLogConfiguration @@ -46051,7 +46051,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46068,9 +46071,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushBasedLogConfiguration --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}: post: description: Requests loading the MongoDB sample dataset into the specified cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -46109,7 +46109,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api loadSampleDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46126,9 +46129,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api loadSampleDataset --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}: get: description: Checks the progress of loading the sample dataset into one cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -46163,7 +46163,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSampleDatasetLoadStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46176,9 +46179,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless: get: description: Returns details for all serverless instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46208,7 +46208,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46221,9 +46224,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServerlessInstances --help post: description: Creates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessInstance @@ -46260,7 +46260,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46277,9 +46280,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessInstance --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs: get: description: Returns all restore jobs for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46320,7 +46320,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46333,9 +46336,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Restores one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessBackupRestoreJob @@ -46383,7 +46383,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46400,9 +46403,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}: get: description: Returns one restore job for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46449,7 +46449,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46462,9 +46465,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: get: description: Returns all snapshots of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46505,7 +46505,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46518,9 +46521,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: get: description: Returns one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46567,7 +46567,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46580,9 +46583,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: get: description: Get whether the Serverless Auto Indexing feature is enabled. @@ -46618,7 +46618,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46631,9 +46634,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Set whether the Serverless Auto Indexing feature is enabled. operationId: setServerlessAutoIndexing @@ -46673,7 +46673,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46690,9 +46693,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setServerlessAutoIndexing --help /api/atlas/v2/groups/{groupId}/serverless/{name}: delete: description: Removes one serverless instance from the specified project. The serverless instance must have termination protection disabled in order to be deleted. To use this resource, the requesting API Key must have the Project Owner role. @@ -46732,7 +46732,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46745,9 +46748,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServerlessInstance --help get: description: Returns details for one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getServerlessInstance @@ -46786,7 +46786,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46799,9 +46802,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessInstance @@ -46845,7 +46845,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46862,9 +46865,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessInstance --help /api/atlas/v2/groups/{groupId}/serviceAccounts: get: description: Returns list of Service Accounts for a project with service account details. @@ -46895,7 +46895,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectServiceAccounts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46908,9 +46911,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectServiceAccounts --help post: description: Creates and assigns the specified Service Account to the specified Project. operationId: createProjectServiceAccount @@ -46946,7 +46946,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46963,9 +46966,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectServiceAccount --help /api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}: delete: description: Removes one Service Account from the specified project. @@ -47001,7 +47001,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47014,9 +47017,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectServiceAccount --help get: description: Get project Service Account Details. operationId: getProjectServiceAccount @@ -47050,7 +47050,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47063,9 +47066,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Update Service Account in Project. operationId: updateProjectServiceAccount @@ -47108,7 +47108,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47125,9 +47128,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectServiceAccount --help post: description: Assigns the specified organization Service Account to the specified project. operationId: addProjectServiceAccount @@ -47172,7 +47172,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47189,9 +47192,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectServiceAccount --help /api/atlas/v2/groups/{groupId}/settings: get: description: Returns details about the specified project's settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47222,7 +47222,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47233,11 +47236,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectSettings --help + --header "Accept: application/vnd.atlas.2023-11-15+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" patch: description: Updates the settings of the specified project. You can update any of the options available. MongoDB cloud only updates the options provided in the request. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProjectSettings @@ -47274,7 +47274,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47291,9 +47294,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectSettings --help /api/atlas/v2/groups/{groupId}/streams: get: description: Returns all stream instances for the specified project. @@ -47322,7 +47322,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47335,9 +47338,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listStreamInstances --help post: description: Creates one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: createStreamInstance @@ -47372,7 +47372,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47389,9 +47392,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}: delete: description: Delete one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. @@ -47428,7 +47428,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47441,9 +47444,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteStreamInstance --help get: description: Returns the details of one stream instance within the specified project. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. operationId: getStreamInstance @@ -47483,7 +47483,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47496,9 +47499,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Update one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: updateStreamInstance @@ -47543,7 +47543,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47560,9 +47563,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs: get: description: 'Downloads the audit logs for the specified Atlas Streams Processing instance. By default, logs cover periods of 30 days. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -47620,7 +47620,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadStreamTenantAuditLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47633,9 +47636,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections: get: description: Returns all connections of the stream instance for the specified project.To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. @@ -47672,7 +47672,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47685,9 +47688,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Creates one connection for a stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Stream Processing Owner role. operationId: createStreamConnection @@ -47730,7 +47730,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47747,9 +47750,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamConnection --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}: delete: description: Delete one connection of the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -47792,7 +47792,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47805,9 +47808,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns the details of one stream connection within the specified stream instance. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getStreamConnection @@ -47846,7 +47846,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47859,9 +47862,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Update one connection for the specified stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. operationId: updateStreamConnection @@ -47912,7 +47912,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47929,9 +47932,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamConnection --help /api/atlas/v2/groups/{groupId}/teams: get: description: Returns all teams to which the authenticated user has access in the project specified using its unique 24-hexadecimal digit identifier. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47967,7 +47967,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47980,9 +47983,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectTeams --help post: description: Adds one team to the specified project. All members of the team share the same project access. MongoDB Cloud limits the number of users to a maximum of 100 teams per project and a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -48026,7 +48026,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addAllTeamsToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48043,9 +48046,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addAllTeamsToProject --help /api/atlas/v2/groups/{groupId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the project specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Project Owner role. @@ -48087,7 +48087,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48100,9 +48103,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectTeam --help patch: description: Updates the project roles assigned to the specified team. You can grant team roles for specific projects and grant project access roles to users in the team. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -48153,7 +48153,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateTeamRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48170,9 +48173,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateTeamRoles --help /api/atlas/v2/groups/{groupId}/userSecurity: get: description: Returns the current LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -48199,7 +48199,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48212,9 +48215,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getLDAPConfiguration --help patch: description: |- Edits the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -48252,7 +48252,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api saveLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48269,9 +48272,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api saveLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/customerX509: delete: description: |- @@ -48300,7 +48300,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableCustomerManagedX509 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48313,9 +48316,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - - label: Atlas CLI - lang: cURL - source: atlas api disableCustomerManagedX509 --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: delete: description: Removes the current LDAP Distinguished Name mapping captured in the ``userToDNMapping`` document from the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -48342,7 +48342,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48355,9 +48358,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: post: description: Verifies the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -48393,7 +48393,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48410,9 +48413,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api verifyLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}: get: description: Returns the status of one request to verify one LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -48448,7 +48448,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfigurationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48461,9 +48464,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/groups/{groupId}/users: get: description: Returns details about all users in the specified project. Users belong to an organization. To use this resource, the requesting API Key must have the Project Read Only role. @@ -48505,7 +48505,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48518,9 +48521,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectUsers --help /api/atlas/v2/groups/{groupId}/users/{userId}: delete: description: Removes the specified user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -48558,7 +48558,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48571,9 +48574,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectUser --help /api/atlas/v2/groups/{groupId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified project. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified project. To use this resource, the requesting API Key must have the Group User Admin role. @@ -48620,7 +48620,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48637,9 +48640,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectRoles --help /api/atlas/v2/groups/byName/{groupName}: get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -48679,7 +48679,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48692,9 +48695,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectByName --help /api/atlas/v2/orgs: get: description: Returns all organizations to which the requesting API Key has access. To use this resource, the requesting API Key must have the Organization Member role. @@ -48734,7 +48734,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48747,9 +48750,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizations --help post: description: Creates one organization in MongoDB Cloud and links it to the requesting API Key's organization. To use this resource, the requesting API Key must have the Organization Owner role. The requesting API Key's organization must be a paying organization. To learn more, see [Configure a Paying Organization](https://www.mongodb.com/docs/atlas/billing/#configure-a-paying-organization) in the MongoDB Atlas documentation. operationId: createOrganization @@ -48789,7 +48789,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48806,9 +48809,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganization --help /api/atlas/v2/orgs/{orgId}: delete: description: |- @@ -48847,7 +48847,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48860,9 +48863,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganization --help get: description: Returns one organization to which the requesting API key has access. To use this resource, the requesting API Key must have the Organization Member role. operationId: getOrganization @@ -48894,7 +48894,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48907,9 +48910,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganization --help patch: description: Renames one organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: renameOrganization @@ -48948,7 +48948,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48965,9 +48968,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameOrganization --help /api/atlas/v2/orgs/{orgId}/apiKeys: get: description: Returns all organization API keys for the specified organization. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the console. To use this resource, the requesting API Key must have the Organization Member role. @@ -49000,7 +49000,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49013,9 +49016,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listApiKeys --help post: description: Creates one API key for the specified organization. An organization API key grants programmatic access to an organization. You can't use the API key to log into the console. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -49051,7 +49051,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49068,9 +49071,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified organization. When you remove an API key from an organization, MongoDB Cloud also removes that key from any projects that use that key. To use this resource, the requesting API Key must have the Organization Owner role. @@ -49109,7 +49109,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49122,9 +49125,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteApiKey --help get: description: Returns one organization API key. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the user interface. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -49162,7 +49162,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49175,9 +49178,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates one organization API key in the specified organization. The organization API keys grant programmatic access to an organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -49224,7 +49224,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49241,9 +49244,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList: get: description: Returns all access list entries that you configured for the specified organization API key. To use this resource, the requesting API Key must have the Organization Member role. @@ -49285,7 +49285,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeyAccessListsEntries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49298,9 +49301,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Creates the access list entries for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. operationId: createApiKeyAccessList @@ -49351,7 +49351,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49368,9 +49371,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKeyAccessList --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}: delete: description: Removes the specified access list entry from the specified organization API key. Resources require all API requests originate from the IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. In addition, you cannot remove the requesting IP address from the requesting organization API key. @@ -49421,7 +49421,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKeyAccessListEntry --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49434,9 +49437,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 get: description: Returns one access list entry for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -49484,7 +49484,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49497,9 +49500,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: post: description: Creates a query process within the Cost Explorer for the given parameters. A token is returned that can be used to poll the status of the query and eventually retrieve the results. @@ -49534,7 +49534,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49551,9 +49554,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCostExplorerQueryProcess --help /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}: get: description: Returns the usage details for a Cost Explorer query, if the query is finished and the data is ready to be viewed. If the data is not ready, a 'processing' response willindicate that another request should be sent later to view the data. @@ -49598,7 +49598,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess_1 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49611,9 +49614,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/events: get: description: |- @@ -49675,7 +49675,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49688,9 +49691,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationEvents --help /api/atlas/v2/orgs/{orgId}/events/{eventId}: get: description: |- @@ -49737,7 +49737,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49750,9 +49753,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/federationSettings: get: description: Returns information about the federation settings for the specified organization. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. @@ -49783,7 +49783,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49796,9 +49799,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getFederationSettings --help /api/atlas/v2/orgs/{orgId}/groups: get: description: |- @@ -49845,7 +49845,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49858,9 +49861,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationProjects --help /api/atlas/v2/orgs/{orgId}/invites: get: description: Returns all pending invitations to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. @@ -49899,7 +49899,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49912,9 +49915,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationInvitations --help patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the username of the invited user. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitation @@ -49951,7 +49951,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49968,9 +49971,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitation --help post: description: Invites one MongoDB Cloud user to join the specified organization. The user must accept the invitation to access information within the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createOrganizationInvitation @@ -50007,7 +50007,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50024,9 +50027,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganizationInvitation --help /api/atlas/v2/orgs/{orgId}/invites/{invitationId}: delete: description: Cancels one pending invitation sent to the specified MongoDB Cloud user to join an organization. You can't cancel an invitation that the user accepted. To use this resource, the requesting API Key must have the Organization Owner role. @@ -50063,7 +50063,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50076,9 +50079,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganizationInvitation --help get: description: Returns the details of one pending invitation to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getOrganizationInvitation @@ -50116,7 +50116,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50129,9 +50132,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the unique identification string for that invitation. Use the Return All Organization Invitations endpoint to retrieve IDs for all pending organization invitations. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitationById @@ -50177,7 +50177,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50194,9 +50197,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitationById --help /api/atlas/v2/orgs/{orgId}/invoices: get: description: |- @@ -50287,7 +50287,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50300,9 +50303,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listInvoices --help /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: get: description: |- @@ -50346,7 +50346,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getInvoice --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50359,9 +50362,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: get: description: |- @@ -50406,7 +50406,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadInvoiceCSV --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50419,9 +50422,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/pending: get: description: Returns all invoices accruing charges for the current billing cycle for the specified organization. To use this resource, the requesting API Key must have the Organization Billing Viewer, Organization Billing Admin, or Organization Owner role. If you have a cross-organization setup, you can view linked invoices if you have the Organization Billing Admin or Organization Owner Role. @@ -50450,7 +50450,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPendingInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50463,9 +50466,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: get: description: Return all projects that you can migrate to the specified organization. @@ -50496,7 +50496,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSourceProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50509,9 +50512,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: delete: description: Remove one organization link and its associated public API key. MongoDB Atlas uses the link-token for push live migrations only. Live migrations (push) let you securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. @@ -50539,7 +50539,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50552,9 +50555,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLinkToken --help post: description: Create one link-token that contains all the information required to complete the link. MongoDB Atlas uses the link-token for push live migrations only. Live migration (push) allows you to securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. operationId: createLinkToken @@ -50589,7 +50589,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50606,9 +50609,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLinkToken --help /api/atlas/v2/orgs/{orgId}/serviceAccounts: get: description: Returns list of Service Accounts with service account details. @@ -50639,7 +50639,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServiceAccounts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50652,9 +50655,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServiceAccounts --help post: description: Create Service Account containing client id and client secrets. operationId: createServiceAccount @@ -50689,7 +50689,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50706,9 +50709,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServiceAccount --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}: delete: description: Delete Service Account. @@ -50741,7 +50741,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50754,9 +50757,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServiceAccount --help get: description: Get Service Account Details. operationId: getServiceAccount @@ -50790,7 +50790,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50803,9 +50806,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Update Service Account. operationId: updateServiceAccount @@ -50848,7 +50848,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50865,9 +50868,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServiceAccount --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups: get: description: Returns list of Service Account projects. @@ -50904,7 +50904,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServiceAccountProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50917,9 +50920,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets: post: description: Create Service Account secret. @@ -50961,7 +50961,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServiceAccountSecret --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50978,9 +50981,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServiceAccountSecret --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}: delete: description: Delete Service Account Secret. @@ -51019,7 +51019,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServiceAccountSecret --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51032,9 +51035,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/settings: get: description: Returns details about the specified organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. @@ -51065,7 +51065,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51078,9 +51081,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganizationSettings --help patch: description: Updates the organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationSettings @@ -51117,7 +51117,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51134,9 +51137,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationSettings --help /api/atlas/v2/orgs/{orgId}/teams: get: description: Returns all teams that belong to the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud only returns teams for which you have access. To use this resource, the requesting API Key must have the Organization Member role. @@ -51173,7 +51173,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51186,9 +51189,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationTeams --help post: description: Creates one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud limits the number of teams to a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -51230,7 +51230,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51247,9 +51250,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the organization specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Organization Owner role. @@ -51292,7 +51292,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51305,9 +51308,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteTeam --help get: description: Returns one team that you identified using its unique 24-hexadecimal digit ID. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -51349,7 +51349,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51362,9 +51365,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 patch: description: Renames one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -51415,7 +51415,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51432,9 +51435,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users: get: description: Returns all MongoDB Cloud users assigned to the team specified using its unique 24-hexadecimal digit identifier. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -51481,7 +51481,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listTeamUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51494,9 +51497,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 post: description: Adds one or more MongoDB Cloud users from the specified organization to the specified team. Teams enable you to grant project access roles to MongoDB Cloud users. You can assign up to 250 MongoDB Cloud users from one organization to one team. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -51549,7 +51549,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51566,9 +51569,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addTeamUser --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified team. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. @@ -51618,7 +51618,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51631,9 +51634,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: get: description: Returns one team that you identified using its human-readable name. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -51673,7 +51673,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51686,9 +51689,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -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 /api/atlas/v2/orgs/{orgId}/users: get: description: Returns details about the MongoDB Cloud users associated with the specified organization. Each MongoDB Cloud user returned must belong to the specified organization or to a project within the specified organization. To use this resource, the requesting API Key must have the Organization Member role. @@ -51722,7 +51722,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51735,9 +51738,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationUsers --help /api/atlas/v2/orgs/{orgId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -51778,7 +51778,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeOrganizationUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51791,9 +51794,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeOrganizationUser --help /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified organization. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -51840,7 +51840,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51857,9 +51860,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationRoles --help /api/atlas/v2/unauth/controlPlaneIPAddresses: get: description: Returns all control plane IP addresses. Currently, inbound Atlas control plane IP addresses are not yet available. The inbound IP address list in your API response is empty. To manually retrieve a list of inbound Atlas control plane IP addresses, see [Required Inbound Access](https://www.mongodb.com/docs/atlas/setup-cluster-security/#std-label-atlas-required-inbound-access). @@ -51880,7 +51880,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllControlPlaneIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51893,9 +51896,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllControlPlaneIPAddresses --help /api/atlas/v2/users: post: description: |- @@ -51935,7 +51935,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51952,9 +51955,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createUser --help /api/atlas/v2/users/{userId}: get: description: Returns the details for one MongoDB Cloud user account with the specified unique identifier for the user. You can't use this endpoint to return information on an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. You can always retrieve your own user account. If you are the owner of a MongoDB Cloud organization or project, you can also retrieve the user profile for any user with membership in that organization or project. To use this resource, the requesting API Key can have any role. @@ -51991,7 +51991,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52004,9 +52007,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUser --help /api/atlas/v2/users/byName/{userName}: get: description: Returns the details for one MongoDB Cloud user account with the specified username. You can't use this endpoint to return information about an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. To use this resource, the requesting API Key can have any role. @@ -52041,7 +52041,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUserByUsername --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52054,9 +52057,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUserByUsername --help servers: - url: https://cloud.mongodb.com tags: 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 babb6d409e..75da3ab25f 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 @@ -250,18 +250,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getSystemStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -312,18 +312,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationMatchersFieldNames --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -380,18 +380,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listClustersForAllProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -448,18 +448,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listEventTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -507,18 +507,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederationApp --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -578,18 +578,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listConnectedOrgConfigs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -656,18 +656,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api removeConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -732,18 +732,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -819,18 +819,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" } ] } @@ -887,18 +887,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listRoleMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -964,18 +964,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" } ] } @@ -1042,18 +1042,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1121,18 +1121,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1211,18 +1211,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" } ] } @@ -1314,18 +1314,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIdentityProviders --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1391,18 +1391,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" } ] } @@ -1463,18 +1463,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteIdentityProvider --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1539,18 +1539,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1623,18 +1623,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" } ] } @@ -1695,18 +1695,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api revokeJwksFromIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api revokeJwksFromIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1760,18 +1760,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProviderMetadata --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1831,18 +1831,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1922,18 +1922,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" } ] } @@ -2001,18 +2001,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2066,18 +2066,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2129,18 +2129,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2209,18 +2209,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" } ] } @@ -2290,18 +2290,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addUserToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" } ] } @@ -2365,18 +2365,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectIpAccessLists --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2458,18 +2458,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" } ] } @@ -2538,18 +2538,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2619,18 +2619,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2701,18 +2701,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpAccessListStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2772,18 +2772,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2846,18 +2846,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" } ] } @@ -2921,18 +2921,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2997,18 +2997,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3084,18 +3084,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] }, @@ -3174,18 +3174,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] } @@ -3261,18 +3261,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertsByAlertConfigurationId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3348,18 +3348,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlerts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3425,18 +3425,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3514,18 +3514,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api acknowledgeAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" } ] } @@ -3600,18 +3600,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationsByAlertId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3675,18 +3675,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3746,18 +3746,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -3827,18 +3827,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -3922,18 +3922,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKeyRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] }, @@ -4008,18 +4008,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -4070,18 +4070,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4144,18 +4144,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" } ] } @@ -4206,18 +4206,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4277,18 +4277,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" } ] } @@ -4348,18 +4348,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listExportBuckets --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4480,18 +4480,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" } ] } @@ -4558,18 +4558,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -4665,18 +4665,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -4730,18 +4730,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4817,18 +4817,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" } ] } @@ -4879,18 +4879,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderAccessRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4954,18 +4954,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" } ] } @@ -5040,18 +5040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deauthorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -5114,18 +5114,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5207,18 +5207,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api authorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" } ] } @@ -5288,18 +5288,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listClusters --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -5373,18 +5373,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -5464,18 +5464,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderRegions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -5549,18 +5549,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" } ] } @@ -5634,18 +5634,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedClusterToServerless --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" } ] } @@ -5722,18 +5722,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -5801,18 +5801,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -5895,18 +5895,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -5979,18 +5979,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupExportJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6068,18 +6068,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" } ] } @@ -6148,18 +6148,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6231,18 +6231,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6323,18 +6323,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -6412,18 +6412,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api cancelBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -6496,18 +6496,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6571,18 +6571,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllBackupSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-08-05" @@ -6645,18 +6645,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-08-05" @@ -6733,18 +6733,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" } ], "x-sunset": "2025-08-05" @@ -6820,18 +6820,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listReplicaSetBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6906,18 +6906,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api takeSnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" } ] } @@ -6992,18 +6992,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -7079,18 +7079,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7156,18 +7156,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listShardedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7245,18 +7245,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -7332,18 +7332,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -7430,18 +7430,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateSnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -7527,18 +7527,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api downloadSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" } ] } @@ -7621,18 +7621,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" } ] } @@ -7698,18 +7698,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7787,18 +7787,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7864,18 +7864,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7953,18 +7953,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8037,18 +8037,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupCheckpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8130,18 +8130,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupCheckpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8207,18 +8207,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPinnedNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPinnedNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -8304,18 +8304,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinNamespacesPatch --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinNamespacesPatch --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" } ] }, @@ -8401,18 +8401,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinNamespacesPut --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinNamespacesPut --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" } ] } @@ -8489,18 +8489,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api unpinNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api unpinNamespaces --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" } ] } @@ -8585,18 +8585,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8686,18 +8686,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexesDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8781,18 +8781,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2025-06-01" @@ -8871,18 +8871,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8978,18 +8978,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -9058,18 +9058,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -9138,18 +9138,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllCustomZoneMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -9230,18 +9230,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomZoneMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -9329,18 +9329,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -9424,18 +9424,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -9605,18 +9605,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRollingIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" } ] } @@ -9692,18 +9692,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOnlineArchives --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9788,18 +9788,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" } ] } @@ -9902,18 +9902,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadOnlineArchiveQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -9995,18 +9995,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -10089,18 +10089,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10197,18 +10197,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" } ] } @@ -10281,18 +10281,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api endOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10363,18 +10363,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10453,18 +10453,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api startOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" } ] } @@ -10535,18 +10535,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2026-03-01" @@ -10631,18 +10631,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" } ], "x-sunset": "2026-03-01" @@ -10703,18 +10703,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api testFailover --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" } ] } @@ -10801,18 +10801,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10888,18 +10888,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" } ] } @@ -10978,18 +10978,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11058,18 +11058,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11133,18 +11133,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11222,18 +11222,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ] }, @@ -11311,18 +11311,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ] } @@ -11405,18 +11405,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexesCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesCluster --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11498,18 +11498,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" } ] } @@ -11610,18 +11610,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11718,18 +11718,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndexByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexByName --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -11824,18 +11824,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndexByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexByName --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11944,18 +11944,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndexByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexByName --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" } ] } @@ -12037,18 +12037,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndex --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12138,18 +12138,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndex --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12243,18 +12243,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" } ] } @@ -12318,18 +12318,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12402,18 +12402,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" } ] } @@ -12500,18 +12500,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacySnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12590,18 +12590,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12675,18 +12675,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12771,18 +12771,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -12845,18 +12845,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12939,18 +12939,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13086,18 +13086,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13180,18 +13180,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinFeatureCompatibilityVersion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinFeatureCompatibilityVersion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" } ] } @@ -13266,18 +13266,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api unpinFeatureCompatibilityVersion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api unpinFeatureCompatibilityVersion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" } ] } @@ -13388,18 +13388,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13453,18 +13453,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13542,18 +13542,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainerByCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13625,18 +13625,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" } ] } @@ -13696,18 +13696,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13780,18 +13780,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -13853,18 +13853,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13949,18 +13949,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" } ] } @@ -14014,18 +14014,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCustomDatabaseRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14097,18 +14097,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" } ] } @@ -14174,18 +14174,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14246,18 +14246,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14338,18 +14338,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" } ] } @@ -14416,18 +14416,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listFederatedDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14496,18 +14496,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" } ] } @@ -14567,18 +14567,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14639,18 +14639,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14731,18 +14731,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" } ] } @@ -14808,18 +14808,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14891,18 +14891,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14975,18 +14975,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15073,18 +15073,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOneDataFederationQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -15174,18 +15174,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadFederatedDatabaseQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15245,18 +15245,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15480,18 +15480,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" } ] } @@ -15567,18 +15567,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -15649,18 +15649,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15751,18 +15751,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" } ] } @@ -15834,18 +15834,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUserCertificates --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15931,18 +15931,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUserCertificate --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" } ] } @@ -16059,18 +16059,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByClusterName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16184,18 +16184,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByHostname --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16246,18 +16246,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -16326,18 +16326,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" } ] } @@ -16400,18 +16400,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -16483,18 +16483,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" } ] } @@ -16580,18 +16580,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -16664,18 +16664,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16802,18 +16802,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16888,18 +16888,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16953,18 +16953,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listMetricTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17064,18 +17064,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17178,18 +17178,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17284,18 +17284,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17361,18 +17361,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listThirdPartyIntegrations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17451,18 +17451,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "Atlas CLI", + "source": "atlas api deleteThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -17539,18 +17539,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17650,18 +17650,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] }, @@ -17758,18 +17758,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] } @@ -17833,18 +17833,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -17912,18 +17912,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -17985,18 +17985,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -18058,18 +18058,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2024-10-04" @@ -18135,18 +18135,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -18223,18 +18223,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -18289,18 +18289,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnAllIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18363,18 +18363,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18455,18 +18455,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -18548,18 +18548,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18652,18 +18652,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -18735,18 +18735,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" } ] } @@ -18818,18 +18818,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api validateMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" } ] } @@ -18899,18 +18899,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getValidationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18970,18 +18970,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19041,18 +19041,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api cutoverMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" } ] } @@ -19100,18 +19100,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "Atlas CLI", + "source": "atlas api resetMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19160,18 +19160,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19231,18 +19231,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" } ] } @@ -19290,18 +19290,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleMaintenanceAutoDefer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" } ] } @@ -19349,18 +19349,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api deferMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" } ] } @@ -19411,18 +19411,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedSlowMs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19473,18 +19473,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "Atlas CLI", + "source": "atlas api disableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19535,18 +19535,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api enableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" } ] } @@ -19658,18 +19658,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLTSVersions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19746,18 +19746,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19830,18 +19830,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" } ] } @@ -19907,18 +19907,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -19982,18 +19982,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20074,18 +20074,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" } ] } @@ -20139,18 +20139,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelines --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20213,18 +20213,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" } ] } @@ -20287,18 +20287,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20362,18 +20362,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20451,18 +20451,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" } ] } @@ -20531,18 +20531,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20627,18 +20627,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20704,18 +20704,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pausePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" } ] } @@ -20781,18 +20781,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api resumePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" } ] } @@ -20877,18 +20877,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineRuns --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20967,18 +20967,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipelineRunDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -21055,18 +21055,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipelineRun --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21143,18 +21143,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api triggerSnapshotIngestion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" } ] } @@ -21220,18 +21220,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" } ] } @@ -21285,18 +21285,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21359,18 +21359,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" } ] } @@ -21435,18 +21435,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21521,18 +21521,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" } ] } @@ -21606,18 +21606,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -21689,18 +21689,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21783,18 +21783,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" } ] } @@ -21863,18 +21863,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPrivateEndpointServices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21952,18 +21952,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -22042,18 +22042,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22151,18 +22151,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" } ] } @@ -22250,18 +22250,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -22350,18 +22350,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22417,18 +22417,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22496,18 +22496,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api disablePeering --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" } ] } @@ -22573,18 +22573,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDataFederationPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22647,18 +22647,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" } ] } @@ -22724,18 +22724,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -22802,18 +22802,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22873,18 +22873,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasProcesses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22946,18 +22946,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23017,18 +23017,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespacesForHost --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForHost --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23099,18 +23099,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23181,18 +23181,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23302,18 +23302,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23384,18 +23384,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskPartitions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23463,18 +23463,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23593,18 +23593,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23830,18 +23830,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23921,18 +23921,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueryNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24036,18 +24036,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24167,18 +24167,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSuggestedIndexes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24289,18 +24289,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24357,18 +24357,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "Atlas CLI", + "source": "atlas api deletePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24423,18 +24423,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24501,18 +24501,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] }, @@ -24579,18 +24579,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] } @@ -24656,18 +24656,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api loadSampleDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" } ] } @@ -24727,18 +24727,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSampleDatasetLoadStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24798,18 +24798,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24875,18 +24875,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" } ] } @@ -24961,18 +24961,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25053,18 +25053,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -25142,18 +25142,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25228,18 +25228,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25315,18 +25315,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25389,18 +25389,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25467,18 +25467,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" } ] } @@ -25547,18 +25547,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25625,18 +25625,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25711,18 +25711,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" } ] } @@ -25782,18 +25782,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectServiceAccounts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectServiceAccounts --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25857,18 +25857,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" } ] } @@ -25932,18 +25932,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectServiceAccount --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -26004,18 +26004,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectServiceAccount --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26090,18 +26090,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] }, @@ -26178,18 +26178,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] } @@ -26246,18 +26246,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26323,18 +26323,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" } ] } @@ -26391,18 +26391,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26465,18 +26465,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" } ] } @@ -26542,18 +26542,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -26622,18 +26622,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26711,18 +26711,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" } ] } @@ -26815,18 +26815,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadStreamTenantAuditLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26895,18 +26895,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26981,18 +26981,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" } ] } @@ -27067,18 +27067,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27145,18 +27145,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27243,18 +27243,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" } ] } @@ -27331,18 +27331,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamProcessor --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" } ] } @@ -27414,18 +27414,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamProcessor --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27498,18 +27498,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamProcessor --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27584,18 +27584,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api startStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api startStreamProcessor --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" } ] } @@ -27670,18 +27670,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api stopStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api stopStreamProcessor --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" } ] } @@ -27756,18 +27756,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamProcessors --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamProcessors --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27836,18 +27836,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27923,18 +27923,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addAllTeamsToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" } ] } @@ -28004,18 +28004,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -28100,18 +28100,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateTeamRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -28162,18 +28162,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28236,18 +28236,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api saveLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" } ] } @@ -28295,18 +28295,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "Atlas CLI", + "source": "atlas api disableCustomerManagedX509 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28357,18 +28357,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28433,18 +28433,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api verifyLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" } ] } @@ -28507,18 +28507,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfigurationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28596,18 +28596,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28673,18 +28673,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -28764,18 +28764,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -28834,18 +28834,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api migrateProjectToAnotherOrg --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api migrateProjectToAnotherOrg --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" } ] } @@ -28919,18 +28919,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28999,18 +28999,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" } ] } @@ -29070,18 +29070,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -29139,18 +29139,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29219,18 +29219,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" } ] } @@ -29294,18 +29294,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29369,18 +29369,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -29447,18 +29447,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -29523,18 +29523,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29613,18 +29613,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -29700,18 +29700,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeyAccessListsEntries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29801,18 +29801,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" } ] } @@ -29896,18 +29896,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKeyAccessListEntry --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -29986,18 +29986,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30059,18 +30059,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" } ] } @@ -30145,18 +30145,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess_1 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30255,18 +30255,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30341,18 +30341,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30409,18 +30409,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30494,18 +30494,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30574,18 +30574,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -30651,18 +30651,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] }, @@ -30728,18 +30728,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] } @@ -30805,18 +30805,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -30880,18 +30880,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -30969,18 +30969,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" } ] } @@ -31122,18 +31122,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31187,18 +31187,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPendingInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31270,18 +31270,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getInvoice --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31346,18 +31346,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadInvoiceCSV --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31414,18 +31414,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSourceProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31476,18 +31476,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "Atlas CLI", + "source": "atlas api deleteLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -31550,18 +31550,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" } ] } @@ -31621,18 +31621,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServiceAccounts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServiceAccounts --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -31695,18 +31695,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" } ] } @@ -31766,18 +31766,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServiceAccount --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -31838,18 +31838,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServiceAccount --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -31924,18 +31924,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] } @@ -32004,18 +32004,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServiceAccountProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServiceAccountProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -32089,18 +32089,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServiceAccountSecret --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServiceAccountSecret --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" } ] } @@ -32169,18 +32169,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServiceAccountSecret --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServiceAccountSecret --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -32237,18 +32237,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32314,18 +32314,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" } ] } @@ -32395,18 +32395,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32479,18 +32479,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" } ] } @@ -32560,18 +32560,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -32644,18 +32644,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -32726,18 +32726,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32822,18 +32822,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -32915,18 +32915,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listTeamUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -33014,18 +33014,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" } ] } @@ -33107,18 +33107,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api removeTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -33184,18 +33184,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -33264,18 +33264,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeOrganizationUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -33355,18 +33355,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -33403,18 +33403,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api returnAllControlPlaneIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllControlPlaneIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -33476,18 +33476,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" } ] } @@ -33548,18 +33548,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getUserByUsername --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -33622,18 +33622,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUser --help" + "label": "curl (Digest)", + "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\"" } ] } 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 b7b553084e..c398e3df95 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 @@ -29866,7 +29866,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSystemStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29879,9 +29882,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getSystemStatus --help /api/atlas/v2/alertConfigs/matchers/fieldNames: get: description: Get all field names that the `matchers.fieldName` parameter accepts when you create or update an Alert Configuration. You can successfully call this endpoint with any assigned role. @@ -29909,7 +29909,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationMatchersFieldNames --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29922,9 +29925,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help /api/atlas/v2/clusters: get: description: Returns the details for all clusters in all projects to which you have access. Clusters contain a group of hosts that maintain the same data set. The response does not include multi-cloud clusters. To use this resource, the requesting API Key can have any cluster-level role. @@ -29953,7 +29953,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClustersForAllProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -29966,9 +29969,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClustersForAllProjects --help /api/atlas/v2/eventTypes: get: description: Returns a list of all event types, along with a description and additional metadata about each event. @@ -29997,7 +29997,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listEventTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30010,9 +30013,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listEventTypes --help /api/atlas/v2/federationSettings/{federationSettingsId}: delete: description: 'Deletes the federation settings instance and all associated data, including identity providers and domains. To use this resource, the requesting API Key must have the Organization Owner role in the last remaining connected organization. **Note**: requests to this resource will fail if there is more than one connected organization in the federation.' @@ -30039,7 +30039,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederationApp --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30052,9 +30055,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederationApp --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: get: description: Returns all connected org configs in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected orgs. @@ -30086,7 +30086,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listConnectedOrgConfigs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30099,9 +30102,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listConnectedOrgConfigs --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: delete: description: 'Removes one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. Note: This request fails if only one connected organization exists in the federation.' @@ -30141,7 +30141,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30154,9 +30157,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeConnectedOrgConfig --help get: description: Returns the specified connected org config from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. operationId: getConnectedOrgConfig @@ -30195,7 +30195,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30208,9 +30211,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: "Updates one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. \n\n**Note** If the organization configuration has no associated identity provider, you can't use this resource to update role mappings or post authorization role grants. \n\n**Note**: The domainRestrictionEnabled field defaults to false if not provided in the request. \n\n**Note**: If the identityProviderId field is not provided, you will disconnect the organization and the identity provider. \n\n**Note**: Currently connected data access identity providers missing from the dataAccessIdentityProviderIds field will be disconnected." operationId: updateConnectedOrgConfig @@ -30256,7 +30256,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30273,9 +30276,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateConnectedOrgConfig --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings: get: description: Returns all role mappings from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -30306,7 +30306,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listRoleMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30319,9 +30322,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Adds one role mapping to the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createRoleMapping @@ -30358,7 +30358,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30375,9 +30378,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}: delete: description: Removes one role mapping in the specified organization from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -30416,7 +30416,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30429,9 +30432,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns one role mapping from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getRoleMapping @@ -30471,7 +30471,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30484,9 +30487,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 put: description: Updates one role mapping in the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateRoleMapping @@ -30533,7 +30533,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30550,9 +30553,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders: get: description: Returns all identity providers with the provided protocol and type in the specified federation. If no protocol is specified, only SAML identity providers will be returned. If no idpType is specified, only WORKFORCE identity providers will be returned. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -30606,7 +30606,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIdentityProviders --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30619,9 +30622,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listIdentityProviders --help post: description: |- Creates one identity provider within the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -30662,7 +30662,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30679,9 +30682,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}: delete: description: "Deletes one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. \n\n**Note**: Requests to this resource will fail if the identity provider has any connected organizations. Before deleting an identity provider, disconnect all organizations and confirm that no organization in your account uses this identity provider. To learn more, see [Manage Organization Mapping for Federated Authentication](https://www.mongodb.com/docs/atlas/security/manage-org-mapping/)." @@ -30716,7 +30716,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30729,9 +30732,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteIdentityProvider --help get: description: 'Returns one identity provider in the specified federation by the identity provider''s id. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. Deprecated versions: v2-{2023-01-01}' operationId: getIdentityProvider @@ -30769,7 +30769,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30782,9 +30785,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: |- Updates one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -30830,7 +30830,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30847,9 +30850,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks: delete: description: "Revokes the JWKS tokens from the requested OIDC identity provider. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. \n\n**Note**: Revoking your JWKS tokens immediately refreshes your IdP public keys from all your Atlas clusters, invalidating previously signed access tokens and logging out all users. You may need to restart your MongoDB clients. All organizations connected to the identity provider will be affected. To learn more, see [Configure OIDC Authorization](https://www.mongodb.com/docs/atlas/security-oidc/#revoke-jwks)." @@ -30884,7 +30884,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api revokeJwksFromIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30897,9 +30900,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - - label: Atlas CLI - lang: cURL - source: atlas api revokeJwksFromIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: get: description: Returns the metadata of one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -30929,7 +30929,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProviderMetadata --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30942,9 +30945,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups: get: description: Returns details about all projects. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Organization Read Only role or higher. @@ -30975,7 +30975,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30988,9 +30991,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjects --help post: description: Creates one project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Read Write role. operationId: createProject @@ -31038,7 +31038,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31055,9 +31058,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProject --help /api/atlas/v2/groups/{groupId}: delete: description: Removes the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. You can delete a project only if there are no Online Archives for the clusters in the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -31086,7 +31086,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31099,9 +31102,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProject --help get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProject @@ -31129,7 +31129,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31142,9 +31145,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProject --help patch: description: Updates the human-readable label that identifies the specified project, or the tags associated with the project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProject @@ -31183,7 +31183,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31200,9 +31203,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProject --help /api/atlas/v2/groups/{groupId}/access: post: description: Adds one MongoDB Cloud user to the specified project. If the MongoDB Cloud user is not a member of the project's organization, then the user must accept their invitation to the organization to access information within the specified project. If the MongoDB Cloud User is already a member of the project's organization, then they will be added to the project immediately and an invitation will not be returned by this resource. To use this resource, the requesting API Key must have the Group User Admin role. @@ -31241,7 +31241,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addUserToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31258,9 +31261,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addUserToProject --help /api/atlas/v2/groups/{groupId}/accessList: get: description: Returns all access list entries from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -31293,7 +31293,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectIpAccessLists --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31306,9 +31309,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectIpAccessLists --help post: description: Adds one or more access list entries to the specified project. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. Write each entry as either one IP address or one CIDR-notated block of IP addresses. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. This endpoint doesn't support concurrent `POST` requests. You must submit multiple `POST` requests synchronously. externalDocs: @@ -31353,7 +31353,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31370,9 +31373,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectIpAccessList --help /api/atlas/v2/groups/{groupId}/accessList/{entryValue}: delete: description: Removes one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains one IP address, one CIDR-notated block of IP addresses, or one AWS Security Group ID. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Owner role. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -31417,7 +31417,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31430,9 +31433,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectIpAccessList --help get: description: Returns one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. This endpoint (`/groups/{GROUP-ID}/accessList`) manages the Project IP Access List. It doesn't manage the access list for MongoDB Cloud organizations. TheProgrammatic API Keys endpoint (`/orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist`) manages those access lists. externalDocs: @@ -31473,7 +31473,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31486,9 +31489,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: get: description: Returns the status of one project IP access list entry. This resource checks if the provided project IP access list entry applies to all cloud providers serving clusters from the specified project. @@ -31529,7 +31529,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpAccessListStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31542,9 +31545,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/alertConfigs: get: description: |- @@ -31577,7 +31577,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31590,9 +31593,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurations --help post: description: |- Creates one alert configuration for the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -31630,7 +31630,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31647,9 +31650,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}: delete: description: |- @@ -31689,7 +31689,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31702,9 +31705,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteAlertConfiguration --help get: description: |- Returns the specified alert configuration from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -31745,7 +31745,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31758,9 +31761,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: |- Enables or disables the specified alert configuration in the specified project. The resource enables the specified alert configuration if currently enabled. The resource disables the specified alert configuration if currently disabled. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -31810,7 +31810,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31827,9 +31830,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAlertConfiguration --help put: description: |- Updates one alert configuration in the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -31881,7 +31881,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31898,9 +31901,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts: get: description: |- @@ -31945,7 +31945,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertsByAlertConfigurationId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31958,9 +31961,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/alerts: get: description: |- @@ -32004,7 +32004,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlerts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32017,9 +32020,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlerts --help /api/atlas/v2/groups/{groupId}/alerts/{alertId}: get: description: |- @@ -32060,7 +32060,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32073,9 +32076,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: |- Confirms receipt of one existing alert. This alert applies to any component in one project. Acknowledging an alert prevents successive notifications. You receive an alert when a monitored component meets or exceeds a value you set until you acknowledge the alert. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -32124,7 +32124,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api acknowledgeAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32141,9 +32144,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api acknowledgeAlert --help /api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs: get: description: |- @@ -32187,7 +32187,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationsByAlertId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32200,9 +32203,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/apiKeys: get: description: Returns all organization API keys that you assigned to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. @@ -32235,7 +32235,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32248,9 +32251,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectApiKeys --help post: description: Creates and assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: createProjectApiKey @@ -32283,7 +32283,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32300,9 +32303,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectApiKey --help /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32343,7 +32343,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32356,9 +32359,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectApiKey --help patch: description: Updates the roles of the organization API key that you specify for the project that you specify. You must specify at least one valid role for the project. The application removes any roles that you do not include in this request if they were previously set in the organization API key that you specify for the project. operationId: updateApiKeyRoles @@ -32405,7 +32405,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKeyRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32422,9 +32425,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKeyRoles --help post: description: Assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can then use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: addProjectApiKey @@ -32468,7 +32468,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32485,9 +32488,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectApiKey --help /api/atlas/v2/groups/{groupId}/auditLog: get: description: Returns the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. @@ -32514,7 +32514,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32527,9 +32530,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAuditingConfiguration --help patch: description: Updates the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. operationId: updateAuditingConfiguration @@ -32564,7 +32564,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32581,9 +32584,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAuditingConfiguration --help /api/atlas/v2/groups/{groupId}/awsCustomDNS: get: description: Returns the custom DNS configuration for AWS clusters in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -32610,7 +32610,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32623,9 +32626,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAWSCustomDNS --help patch: description: Enables or disables the custom DNS configuration for AWS clusters in the specified project. Enable custom DNS if you use AWS VPC peering and use your own DNS servers. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: toggleAWSCustomDNS @@ -32658,7 +32658,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32675,9 +32678,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAWSCustomDNS --help /api/atlas/v2/groups/{groupId}/backup/exportBuckets: get: description: 'Returns all AWS S3 buckets and Azure Blob Storage Containers associated with the specified Project. To use this resource, the requesting API Key must have the Project Read Only role. Deprecated versions: v2-{2023-01-01}' @@ -32707,7 +32707,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listExportBuckets --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32720,9 +32723,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: 'Grants MongoDB Cloud access to the specified AWS S3 Bucket or Azure Blob Storage Container. This enables this Export Bucket to receive Atlas Cloud Backup Snapshots. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' operationId: createExportBucket @@ -32798,7 +32798,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32815,9 +32818,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createExportBucket --help /api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}: delete: description: Revoke MongoDB Cloud access to the specified AWS S3 Bucket or Azure Blob Storage Container. This prevents this Export Bucket from receiving Atlas Cloud Backup Snapshots. Auto export must be disabled on all clusters in this Project exporting to this Export Bucket before revoking access. To use this resource, the requesting API Key must have the Project Owner role. @@ -32857,7 +32857,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32870,9 +32873,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteExportBucket --help get: description: 'Returns one AWS S3 Bucket or Azure Blob Storage Container associated with the specified Project. To use this resource, the requesting API Key must have the Project Read Only role. Deprecated versions: v2-{2023-01-01}' operationId: getExportBucket @@ -32932,7 +32932,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32945,9 +32948,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/backupCompliancePolicy: get: description: 'Returns the Backup Compliance Policy settings with the specified project. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' @@ -32976,7 +32976,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32987,11 +32990,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getDataProtectionSettings --help + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" put: description: 'Updates the Backup Compliance Policy settings for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' operationId: updateDataProtectionSettings @@ -33035,7 +33035,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33052,9 +33055,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDataProtectionSettings --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess: get: description: Returns all cloud provider access roles with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33081,7 +33081,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderAccessRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33094,9 +33097,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listCloudProviderAccessRoles --help post: description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -33132,7 +33132,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33149,9 +33152,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}: delete: description: Revokes access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. @@ -33195,7 +33195,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deauthorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33208,9 +33211,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - - label: Atlas CLI - lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: get: description: Returns the access role with the specified id and with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33246,7 +33246,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33259,9 +33262,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Grants access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. This API endpoint is one step in a procedure to create unified access for MongoDB Cloud services. externalDocs: @@ -33310,7 +33310,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api authorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33327,9 +33330,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/clusters: get: deprecated: true @@ -33366,7 +33366,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClusters --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33379,9 +33382,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClusters --help x-sunset: "2026-03-01" post: deprecated: true @@ -33424,7 +33424,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33441,9 +33444,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCluster --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}: delete: @@ -33489,7 +33489,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33502,9 +33505,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCluster --help get: deprecated: true description: 'Returns the details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. The response includes clusters with asymmetrically-sized shards. To use this resource, the requesting API Key must have the Project Read Only role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-01-01}' @@ -33544,7 +33544,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33557,9 +33560,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -33609,7 +33609,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33626,9 +33629,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCluster --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements: get: @@ -33719,7 +33719,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33732,9 +33735,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces: get: description: Return the subset of namespaces from the given cluster sorted by highest total execution time (descending) within the given time window. @@ -33782,7 +33782,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespacesForCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33795,9 +33798,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: get: description: Returns all Cloud Backup snapshot export jobs associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -33836,7 +33836,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupExportJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33849,9 +33852,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Exports one backup snapshot for dedicated Atlas cluster using Cloud Backups to an Export Bucket. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: createBackupExportJob @@ -33898,7 +33898,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33915,9 +33918,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupExportJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}: get: description: Returns one Cloud Backup snapshot export job associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -33958,7 +33958,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33971,9 +33974,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: get: description: Returns all cloud backup restore jobs for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -34012,7 +34012,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34025,9 +34028,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: |- Restores one snapshot of one cluster from the specified project. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -34078,7 +34078,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34095,9 +34098,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}: delete: description: Cancels one cloud backup restore job of one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -34144,7 +34144,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cancelBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34157,9 +34160,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns one cloud backup restore job for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: getBackupRestoreJob @@ -34203,7 +34203,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34216,9 +34219,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: delete: deprecated: true @@ -34256,7 +34256,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllBackupSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34269,9 +34272,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2025-08-05" get: deprecated: true @@ -34308,7 +34308,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34321,9 +34324,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2025-08-05" patch: deprecated: true @@ -34372,7 +34372,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34389,9 +34392,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateBackupSchedule --help x-sunset: "2025-08-05" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots: get: @@ -34433,7 +34433,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listReplicaSetBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34446,9 +34449,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: |- Takes one on-demand snapshot for the specified cluster. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -34495,7 +34495,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api takeSnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34512,9 +34515,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api takeSnapshot --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}: delete: description: Removes the specified snapshot. To use this resource, the requesting API Key must have the Project Owner role. @@ -34561,7 +34561,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34574,9 +34577,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns one snapshot from the specified cluster. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getReplicaSetBackup @@ -34622,7 +34622,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34635,9 +34638,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Changes the expiration date for one cloud backup snapshot for one cluster in the specified project. operationId: updateSnapshotRetention @@ -34690,7 +34690,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateSnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34707,9 +34710,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateSnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}: delete: description: Removes one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -34754,7 +34754,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34767,9 +34770,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getShardedClusterBackup @@ -34815,7 +34815,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34828,9 +34831,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: get: description: Returns all snapshots of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34868,7 +34868,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listShardedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34881,9 +34884,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: post: description: Requests one snapshot for the specified shared cluster. This resource returns a `snapshotURL` that you can use to download the snapshot. This `snapshotURL` remains active for four hours after you make the request. To use this resource, the requesting API Key must have the Project Owner role. @@ -34934,7 +34934,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34951,9 +34954,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api downloadSharedClusterBackup --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore: post: description: Restores the specified cluster. MongoDB Cloud limits which clusters can be the target clusters of a restore. The target cluster can't use encryption at rest, run a major release MongoDB version different than the snapshot, or receive client requests during restores. MongoDB Cloud deletes all existing data on the target cluster prior to the restore operation. To use this resource, the requesting API Key must have the Project Owner role. @@ -35002,7 +35002,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35019,9 +35022,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores: get: description: Returns all restore jobs for the specified M2 or M5 cluster. Restore jobs restore a cluster using a snapshot. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35059,7 +35059,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35072,9 +35075,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: get: description: Returns the specified restore job. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35121,7 +35121,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35134,9 +35137,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: get: description: Returns details for all snapshots for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35174,7 +35174,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35187,9 +35190,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: get: description: Returns details for one snapshot for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35236,7 +35236,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35249,9 +35252,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: get: deprecated: true @@ -35291,7 +35291,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupCheckpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35304,9 +35307,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: get: deprecated: true @@ -35356,7 +35356,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupCheckpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35369,9 +35372,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned: get: description: Returns a list of given cluster's pinned namespaces, a set of namespaces manually selected by users to collect query latency metrics on. @@ -35410,7 +35410,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPinnedNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35423,9 +35426,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Add provided list of namespaces to existing pinned namespaces list for collection-level latency metrics collection for the given Group and Cluster operationId: pinNamespacesPatch @@ -35477,7 +35477,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinNamespacesPatch --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35494,9 +35497,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinNamespacesPatch --help put: description: Pin provided list of namespaces for collection-level latency metrics collection for the given Group and Cluster. This initializes a pinned namespaces list or replaces any existing pinned namespaces list for the Group and Cluster. operationId: pinNamespacesPut @@ -35548,7 +35548,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinNamespacesPut --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35563,11 +35566,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ - -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinNamespacesPut --help + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin: patch: description: Unpin provided list of namespaces for collection-level latency metrics collection for the given Group and Cluster @@ -35613,7 +35613,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api unpinNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35630,9 +35633,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api unpinNamespaces --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes: post: deprecated: true @@ -35683,7 +35683,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35700,9 +35703,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}: get: @@ -35757,7 +35757,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexesDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35770,9 +35773,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}: delete: @@ -35824,7 +35824,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35837,9 +35840,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2025-06-01" get: deprecated: true @@ -35888,7 +35888,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35901,9 +35904,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2025-06-01" patch: deprecated: true @@ -35963,7 +35963,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35980,9 +35983,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites: get: @@ -36023,7 +36023,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36036,9 +36039,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping: delete: @@ -36079,7 +36079,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllCustomZoneMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36092,9 +36095,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2026-03-01" post: deprecated: true @@ -36143,7 +36143,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomZoneMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36160,9 +36163,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomZoneMapping --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces: delete: @@ -36215,7 +36215,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36228,9 +36231,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2026-03-01" post: deprecated: true @@ -36281,7 +36281,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36298,9 +36301,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createManagedNamespace --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index: post: @@ -36412,7 +36412,10 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRollingIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36429,9 +36432,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRollingIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives: get: description: Returns details of all online archives. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36473,7 +36473,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOnlineArchives --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36486,9 +36489,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Creates one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -36539,7 +36539,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36556,9 +36559,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}: delete: description: Removes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. @@ -36608,7 +36608,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36621,9 +36624,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns one online archive for one cluster. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. externalDocs: @@ -36674,7 +36674,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36687,9 +36690,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates, pauses, or resumes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -36749,7 +36749,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36766,9 +36769,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz: get: description: 'Downloads query logs for the specified online archive. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -36834,7 +36834,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadOnlineArchiveQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36847,9 +36850,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation: delete: description: Ends a cluster outage simulation. @@ -36892,7 +36892,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api endOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36905,9 +36908,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - - label: Atlas CLI - lang: cURL - source: atlas api endOutageSimulation --help get: description: Returns one outage simulation for one cluster. externalDocs: @@ -36949,7 +36949,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36962,9 +36965,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Starts a cluster outage simulation. externalDocs: @@ -37011,7 +37011,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api startOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37028,9 +37031,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api startOutageSimulation --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs: get: deprecated: true @@ -37072,7 +37072,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37085,9 +37088,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2026-03-01" patch: deprecated: true @@ -37139,7 +37139,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37156,9 +37159,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help x-sunset: "2026-03-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries: post: @@ -37193,7 +37193,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api testFailover --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37210,9 +37213,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api testFailover --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs: get: deprecated: true @@ -37265,7 +37265,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37278,9 +37281,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: deprecated: true description: Restores one legacy backup for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). This endpoint doesn't support creating checkpoint restore jobs for sharded clusters, or creating restore jobs for queryable backup snapshots. If you create an automated restore job by specifying `delivery.methodName` of `AUTOMATED_RESTORE` in your request body, MongoDB Cloud removes all existing data on the target cluster prior to the restore. @@ -37325,7 +37325,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37342,9 +37345,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLegacyBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}: get: deprecated: true @@ -37395,7 +37395,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37408,9 +37411,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: delete: description: Deletes the Search Nodes for the specified cluster. @@ -37450,7 +37450,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37463,9 +37466,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: 'Return the Search Nodes for the specified cluster. Deprecated versions: v2-{2023-01-01}' operationId: getAtlasSearchDeployment @@ -37502,7 +37502,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37515,9 +37518,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: 'Updates the Search Nodes for the specified cluster. Deprecated versions: v2-{2023-01-01}' operationId: updateAtlasSearchDeployment @@ -37563,7 +37563,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37580,9 +37583,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchDeployment --help post: description: Creates Search Nodes for the specified cluster. operationId: createAtlasSearchDeployment @@ -37628,7 +37628,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37645,9 +37648,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchDeployment --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes: get: description: Returns all Atlas Search indexes on the specified cluster. Atlas Search indexes contain the indexed fields and the analyzers used to create the indexes. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -37696,7 +37696,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexesCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37709,9 +37712,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Creates one Atlas Search index on the specified collection. Atlas Search indexes define the fields on which to create the index and the analyzers to use when creating the index. Only clusters running MongoDB v4.2 or later can use Atlas Search. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -37760,7 +37760,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37777,9 +37780,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}: get: description: Returns all Atlas Search indexes on the specified collection. Atlas Search indexes contain the indexed fields and the analyzers used to create the indexes. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -37840,7 +37840,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37853,9 +37856,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}: delete: description: Removes one Atlas Search index that you identified with its database, collection, and name. To use this resource, the requesting API key must have the Project Data Access Admin role. This deletion is eventually consistent. @@ -37914,7 +37914,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndexByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37927,9 +37930,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns one Atlas Search index in the specified project. You identify this index using its database, collection and name. Atlas Search index contains the indexed fields and the analyzers used to create the index. To use this resource, the requesting API Key must have the Project Data Access Read Write role. externalDocs: @@ -37987,7 +37987,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndexByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38000,9 +38003,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates one Atlas Search index that you identified with its database, collection name, and index name. Atlas Search indexes define the fields on which to create the index and the analyzers to use when creating the index. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -38069,7 +38069,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndexByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38086,9 +38089,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndexByName --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}: delete: description: Removes one Atlas Search index that you identified with its unique ID. To use this resource, the requesting API key must have the Project Data Access Admin role. This deletion is eventually consistent. @@ -38138,7 +38138,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38151,9 +38154,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns one Atlas Search index in the specified project. You identify this index using its unique ID. Atlas Search index contains the indexed fields and the analyzers used to create the index. To use this resource, the requesting API Key must have the Project Data Access Read Write role. externalDocs: @@ -38208,7 +38208,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38221,9 +38224,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates one Atlas Search index that you identified with its unique ID. Atlas Search indexes define the fields on which to create the index and the analyzers to use when creating the index. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -38281,7 +38281,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38298,9 +38301,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule: get: deprecated: true @@ -38340,7 +38340,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38353,9 +38356,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: deprecated: true description: |- @@ -38401,7 +38401,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38416,11 +38419,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ - -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotSchedule --help + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots: get: deprecated: true @@ -38470,7 +38470,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacySnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38483,9 +38486,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: delete: deprecated: true @@ -38533,7 +38533,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38546,9 +38549,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: deprecated: true description: Returns one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -38593,7 +38593,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38606,9 +38609,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: deprecated: true description: Changes the expiration date for one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -38660,7 +38660,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38677,9 +38680,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status: get: description: Returns the status of all changes that you made to the specified cluster in the specified project. Use this resource to check the progress MongoDB Cloud has made in processing your changes. The response does not include the deployment of new dedicated clusters. To use this resource, the requesting API Key must have the Project Read Only role. @@ -38715,7 +38715,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38728,9 +38731,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion: post: description: Pins the FCV to the current MongoDB version. @@ -38779,7 +38779,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinFeatureCompatibilityVersion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38796,9 +38799,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinFeatureCompatibilityVersion --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion: post: description: Unpins the current fixed Feature Compatibility Version. This feature is not available for clusters on rapid release. @@ -38842,7 +38842,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api unpinFeatureCompatibilityVersion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38859,9 +38862,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api unpinFeatureCompatibilityVersion --help /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: get: description: 'Returns a compressed (.gz) log file that contains a range of log messages for the specified host for the specified project. MongoDB updates process and audit logs from the cluster backend infrastructure every five minutes and contain log data from the previous five minutes. If you poll the API for log files, we recommend polling every five minutes. For example, if the logs are updated at 4:00 UTC and then you poll the API, the API returns log data from the interval between 3:55 UTC and 4:00 UTC. This feature isn''t available for `M0` free clusters, `M2`, `M5`, or serverless clusters. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip". Deprecated versions: v2-{2023-01-01}' @@ -38932,7 +38932,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38945,9 +38948,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/provider/regions: get: description: Returns the list of regions available for the specified cloud provider at the specified tier. To use this resource, the requesting API Key must have the Project Read Only role. @@ -38989,7 +38989,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderRegions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39002,9 +39005,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: post: description: Upgrades a shared-tier cluster in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. Each project supports up to 25 clusters. @@ -39046,7 +39046,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39063,9 +39066,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedCluster --help /api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless: post: description: Upgrades a shared-tier cluster to a serverless instance in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. @@ -39107,7 +39107,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedClusterToServerless --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39124,9 +39127,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedClusterToServerless --help /api/atlas/v2/groups/{groupId}/collStats/metrics: get: description: Returns all available Coll Stats Latency metric names and their respective units for the specified project at the time of request. @@ -39156,7 +39156,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39169,9 +39172,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/containers: get: description: Returns details about all network peering containers in the specified project for the specified cloud provider. If you do not specify the cloud provider, MongoDB Cloud returns details about all network peering containers in the project for Amazon Web Services (AWS). To use this resource, the requesting API Key must have the Project Read Only role. @@ -39214,7 +39214,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainerByCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39227,9 +39230,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help post: description: Creates one new network peering container in the specified project. MongoDB Cloud can deploy Network Peering connections in a network peering container. GCP can have one container per project. AWS and Azure can have one container per cloud provider region. To use this resource, the requesting API Key must have the Project Owner role. operationId: createPeeringContainer @@ -39270,7 +39270,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39287,9 +39290,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/{containerId}: delete: description: Removes one network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -39332,7 +39332,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39345,9 +39348,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringContainer --help get: description: Returns details about one network peering container in one specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringContainer @@ -39383,7 +39383,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39396,9 +39399,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates the network details and labels of one specified network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringContainer @@ -39449,7 +39449,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39466,9 +39469,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/all: get: description: Returns details about all network peering containers in the specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39498,7 +39498,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39511,9 +39514,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/customDBRoles/roles: get: description: Returns all custom roles for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39542,7 +39542,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCustomDatabaseRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39555,9 +39558,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Creates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createCustomDatabaseRole @@ -39598,7 +39598,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39615,9 +39618,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}: delete: description: Removes one custom role from the specified project. You can't remove a custom role that would leave one or more child roles with no parent roles or actions. You also can't remove a custom role that would leave one or more database users without roles. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -39654,7 +39654,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39667,9 +39670,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCustomDatabaseRole --help get: description: Returns one custom role for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getCustomDatabaseRole @@ -39703,7 +39703,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39716,9 +39719,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateCustomDatabaseRole @@ -39765,7 +39765,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39782,9 +39785,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/dataFederation: get: description: Returns the details of all federated database instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only or higher role. @@ -39822,7 +39822,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listFederatedDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39835,9 +39838,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listFederatedDatabases --help post: description: Creates one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createFederatedDatabase @@ -39876,7 +39876,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39893,9 +39896,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}: delete: description: Removes one federated database instance from the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. @@ -39928,7 +39928,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39941,9 +39944,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederatedDatabase --help get: description: Returns the details of one federated database instance within the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getFederatedDatabase @@ -39978,7 +39978,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39991,9 +39994,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates the details of one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or higher role. operationId: updateFederatedDatabase @@ -40040,7 +40040,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40057,9 +40060,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits: get: description: Returns query limits for a federated databases instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40096,7 +40096,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40109,9 +40112,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: delete: description: Deletes one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -40162,7 +40162,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOneDataFederationInstanceQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40175,9 +40178,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns the details of one query limit for the specified federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: returnFederatedDatabaseQueryLimit @@ -40228,7 +40228,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40241,9 +40244,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Creates or updates one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: createOneDataFederationQueryLimit @@ -40304,7 +40304,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOneDataFederationQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40321,9 +40324,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOneDataFederationQueryLimit --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz: get: description: 'Downloads the query logs for the specified federated database instance. To use this resource, the requesting API Key must have the Project Owner or Project Data Access Read Write roles. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -40380,7 +40380,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadFederatedDatabaseQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40393,9 +40396,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/databaseUsers: get: description: Returns all database users that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40425,7 +40425,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40438,9 +40441,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listDatabaseUsers --help post: description: Creates one database user in the specified project. This MongoDB Cloud supports a maximum of 100 database users per project. If you require more than 100 database users on a project, contact [Support](https://cloud.mongodb.com/support). To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createDatabaseUser @@ -40572,7 +40572,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40589,9 +40592,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}: delete: description: Removes one database user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -40648,7 +40648,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40661,9 +40664,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDatabaseUser --help get: description: Returns one database user that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getDatabaseUser @@ -40717,7 +40717,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40730,9 +40733,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates one database user that belongs to the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: updateDatabaseUser @@ -40799,7 +40799,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40816,9 +40819,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs: get: description: Returns all unexpired X.509 certificates for the specified MongoDB user. This MongoDB user belongs to one project. Atlas manages these certificates and the MongoDB user. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40856,7 +40856,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUserCertificates --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40869,9 +40872,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: |- Generates one X.509 certificate for the specified MongoDB user. Atlas manages the certificate and MongoDB user that belong to one project. To use this resource, the requesting API Key must have the Project Owner role. @@ -40927,7 +40927,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUserCertificate --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40944,9 +40947,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUserCertificate --help /api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}: get: description: Returns the access logs of one cluster identified by the cluster's name. Access logs contain a list of authentication requests made against your cluster. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -41019,7 +41019,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByClusterName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41032,9 +41035,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: get: description: Returns the access logs of one cluster identified by the cluster's hostname. Access logs contain a list of authentication requests made against your clusters. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -41104,7 +41104,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByHostname --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41115,11 +41118,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -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 + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" /api/atlas/v2/groups/{groupId}/encryptionAtRest: get: description: |- @@ -41149,7 +41149,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41162,9 +41165,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getEncryptionAtRest --help patch: description: |- Updates the configuration for encryption at rest using the keys you manage through your cloud provider. MongoDB Cloud encrypts all storage even if you don't use your own key management. This resource requires the requesting API Key to have the Project Owner role. This feature isn't available for `M0` free clusters, `M2`, `M5`, or serverless clusters. @@ -41215,7 +41215,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41232,9 +41235,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateEncryptionAtRest --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints: get: description: Returns the private endpoints of the specified cloud provider for encryption at rest using customer key management. @@ -41269,7 +41269,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41282,9 +41285,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Creates a private endpoint in the specified region for encryption at rest using customer key management. operationId: createEncryptionAtRestPrivateEndpoint @@ -41325,7 +41325,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41342,9 +41345,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}: delete: description: Deletes one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. @@ -41395,7 +41395,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41408,9 +41411,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. operationId: getEncryptionAtRestPrivateEndpoint @@ -41453,7 +41453,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41466,9 +41469,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/events: get: description: |- @@ -41552,7 +41552,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41565,9 +41568,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectEvents --help /api/atlas/v2/groups/{groupId}/events/{eventId}: get: description: |- @@ -41614,7 +41614,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41627,9 +41630,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: get: description: Returns all Atlas Search metric types available for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -41658,7 +41658,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listMetricTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41671,9 +41674,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: get: description: Returns the Atlas Search metrics data series within the provided time range for one namespace and index name on the specified process. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -41732,7 +41732,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41745,9 +41748,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: get: description: Returns the Atlas Search index metrics within the specified time range for one namespace in the specified process. @@ -41805,7 +41805,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41818,9 +41821,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: get: description: Returns the Atlas Search hardware and status data series within the provided time range for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -41877,7 +41877,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41890,9 +41893,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/integrations: get: description: Returns the settings that permit integrations with all configured third-party services. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -41926,7 +41926,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listThirdPartyIntegrations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41939,9 +41942,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listThirdPartyIntegrations --help /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: delete: description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -41990,7 +41990,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42003,9 +42006,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteThirdPartyIntegration --help get: description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: getThirdPartyIntegration @@ -42053,7 +42053,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42066,9 +42069,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: createThirdPartyIntegration @@ -42128,7 +42128,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42145,9 +42148,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createThirdPartyIntegration --help put: description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: updateThirdPartyIntegration @@ -42205,7 +42205,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42222,9 +42225,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateThirdPartyIntegration --help /api/atlas/v2/groups/{groupId}/invites: get: deprecated: true @@ -42260,7 +42260,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42273,9 +42276,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectInvitations --help x-sunset: "2024-10-04" patch: deprecated: true @@ -42314,7 +42314,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42331,9 +42334,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitation --help x-sunset: "2024-10-04" post: deprecated: true @@ -42368,7 +42368,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42385,9 +42388,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectInvitation --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/invites/{invitationId}: delete: @@ -42424,7 +42424,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42437,9 +42440,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectInvitation --help x-sunset: "2024-10-04" get: deprecated: true @@ -42478,7 +42478,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42491,9 +42494,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 x-sunset: "2024-10-04" patch: deprecated: true @@ -42540,7 +42540,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42557,9 +42560,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitationById --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/ipAddresses: get: @@ -42589,7 +42589,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42602,9 +42605,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllIPAddresses --help /api/atlas/v2/groups/{groupId}/limits: get: description: Returns all the limits for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -42639,7 +42639,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42652,9 +42655,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectLimits --help /api/atlas/v2/groups/{groupId}/limits/{limitName}: delete: description: Removes the specified project limit. Depending on the limit, Atlas either resets the limit to its default value or removes the limit entirely. To use this resource, the requesting API Key must have the Project Owner role. @@ -42721,7 +42721,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42734,9 +42737,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectLimit --help get: description: Returns the specified limit for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProjectLimit @@ -42804,7 +42804,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42817,9 +42820,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: |- Sets the specified project limit. To use this resource, the requesting API Key must have the Project Owner role. @@ -42897,7 +42897,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42914,9 +42917,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setProjectLimit --help /api/atlas/v2/groups/{groupId}/liveMigrations: post: description: |- @@ -42964,7 +42964,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42981,9 +42984,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}: get: description: Return details of one cluster migration job. Each push live migration job uses one migration host. Your API Key must have the Organization Member role to successfully call this resource. @@ -43015,7 +43015,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43028,9 +43031,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: put: description: Cut over the migrated cluster to MongoDB Atlas. Confirm when the cut over completes. When the cut over completes, MongoDB Atlas completes the live migration process and stops synchronizing with the source cluster. Your API Key must have the Organization Owner role to successfully call this resource. @@ -43062,7 +43062,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cutoverMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43079,9 +43082,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api cutoverMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/validate: post: description: 'Verifies whether the provided credentials, available disk space, MongoDB versions, and so on meet the requirements of the migration request. If the check passes, the migration can proceed. Your API Key must have the Organization Owner role to successfully call this resource. Deprecated versions: v2-{2023-01-01}' @@ -43122,7 +43122,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api validateMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43139,9 +43142,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api validateMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}: get: description: Return the status of one migration validation job. Your API Key must have the Organization Owner role to successfully call this resource. @@ -43183,7 +43183,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getValidationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43196,9 +43199,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/maintenanceWindow: delete: description: Resets the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -43224,7 +43224,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resetMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43237,9 +43240,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - - label: Atlas CLI - lang: cURL - source: atlas api resetMaintenanceWindow --help get: description: Returns the maintenance window for the specified project. MongoDB Cloud starts those maintenance activities when needed. You can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: getMaintenanceWindow @@ -43265,7 +43265,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43278,9 +43281,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getMaintenanceWindow --help patch: description: Updates the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateMaintenanceWindow @@ -43314,7 +43314,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43331,9 +43334,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer: post: description: Toggles automatic deferral of the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -43359,7 +43359,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleMaintenanceAutoDefer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43376,9 +43379,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/defer: post: description: Defers the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -43404,7 +43404,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deferMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43421,9 +43424,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api deferMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/managedSlowMs: get: description: Get whether the Managed Slow MS feature is enabled. @@ -43450,7 +43450,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedSlowMs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43463,9 +43466,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getManagedSlowMs --help /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: delete: description: Disables the slow operation threshold that MongoDB Cloud calculated for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -43492,7 +43492,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43505,9 +43508,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - - label: Atlas CLI - lang: cURL - source: atlas api disableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: post: description: Enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -43534,7 +43534,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api enableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43551,9 +43554,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api enableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/mongoDBVersions: get: description: Returns the MongoDB Long Term Support Major Versions available to new clusters in this project. @@ -43621,7 +43621,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLTSVersions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43632,11 +43635,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectLTSVersions --help + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" /api/atlas/v2/groups/{groupId}/peers: get: description: Returns details about all network peering connections in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43678,7 +43678,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43691,9 +43694,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringConnections --help post: description: Creates one new network peering connection in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations and prerequisites, see the Network Peering Documentation. externalDocs: @@ -43735,7 +43735,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43752,9 +43755,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringConnection --help /api/atlas/v2/groups/{groupId}/peers/{peerId}: delete: description: Removes one network peering connection in the specified project. If you Removes the last network peering connection associated with a project, MongoDB Cloud also removes any AWS security groups from the project IP access list. To use this resource, the requesting API Key must have the Project Owner role. @@ -43792,7 +43792,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43805,9 +43808,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringConnection --help get: description: Returns details about one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringConnection @@ -43844,7 +43844,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43857,9 +43860,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringConnection @@ -43907,7 +43907,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43924,9 +43927,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringConnection --help /api/atlas/v2/groups/{groupId}/pipelines: get: description: Returns a list of Data Lake Pipelines. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43956,7 +43956,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelines --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43969,9 +43972,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPipelines --help post: description: Creates one Data Lake Pipeline. operationId: createPipeline @@ -44007,7 +44007,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44024,9 +44027,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}: delete: description: Removes one Data Lake Pipeline. @@ -44063,7 +44063,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44076,9 +44079,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePipeline --help get: description: Returns the details of one Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipeline @@ -44115,7 +44115,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44128,9 +44131,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates one Data Lake Pipeline. operationId: updatePipeline @@ -44177,7 +44177,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44194,9 +44197,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules: get: description: Returns a list of backup schedule policy items that you can use as a Data Lake Pipeline source. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44236,7 +44236,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44249,9 +44252,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: get: description: Returns a list of backup snapshots that you can use to trigger an on demand pipeline run. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44299,7 +44299,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44312,9 +44315,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: post: description: Pauses ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44352,7 +44352,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pausePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44369,9 +44372,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pausePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume: post: description: Resumes ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44409,7 +44409,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resumePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44426,9 +44429,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api resumePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs: get: description: Returns a list of past Data Lake Pipeline runs. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44476,7 +44476,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineRuns --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44489,9 +44492,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: delete: description: Deletes dataset that Atlas generated during the specified pipeline run. @@ -44539,7 +44539,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipelineRunDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44552,9 +44555,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns the details of one Data Lake Pipeline run within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipelineRun @@ -44601,7 +44601,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipelineRun --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44614,9 +44617,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: post: description: Triggers a Data Lake Pipeline ingestion of a specified snapshot. @@ -44661,7 +44661,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api triggerSnapshotIngestion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44678,9 +44681,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api triggerSnapshotIngestion --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService: get: description: Returns the name, interfaces, and state of all private endpoint services for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44720,7 +44720,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPrivateEndpointServices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44733,9 +44736,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: delete: description: Removes one private endpoint service from the specified project. This cloud service provider manages the private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -44782,7 +44782,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44795,9 +44798,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns the name, interfaces, and state of the specified private endpoint service from one project. The cloud service provider hosted this private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpointService @@ -44845,7 +44845,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44858,9 +44861,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: post: description: Creates one private endpoint for the specified cloud service provider. This cloud service provider manages the private endpoint service, which in turn manages the private endpoints for the project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations, limitations, and prerequisites, see the MongoDB documentation for setting up a private endpoint. @@ -44920,7 +44920,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44937,9 +44940,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}: delete: description: Removes one private endpoint from the specified project and private endpoint service, as managed by the specified cloud service provider. When the last private endpoint is removed from a given private endpoint service, that private endpoint service is also removed. To use this resource, the requesting API Key must have the Project Owner role. @@ -44993,7 +44993,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45006,9 +45009,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns the connection state of the specified private endpoint. The private endpoint service manages this private endpoint which belongs to one project hosted from one cloud service provider. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpoint @@ -45063,7 +45063,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45076,9 +45079,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: post: description: Creates one private endpoint service for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. When you create a private endpoint service, MongoDB Cloud creates a network container in the project for the cloud provider for which you create the private endpoint service if one doesn't already exist. To learn more about private endpoint terminology in MongoDB Cloud, see Private Endpoint Concepts. To use this resource, the requesting API Key must have the Project Owner role. @@ -45115,7 +45115,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45132,9 +45135,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpointService --help /api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode: get: description: Checks whether each region in the specified cloud service provider can create multiple private endpoints per region. The cloud service provider manages the private endpoint for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45163,7 +45163,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45176,9 +45179,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Enables or disables the ability to create multiple private endpoints per region in all cloud service providers in one project. The cloud service provider manages the private endpoints for the project. Connection strings to existing multi-region and global sharded clusters change when you enable this setting. You must update your applications to use the new connection strings. This might cause downtime. To use this resource, the requesting API Key must have the Project Owner role and all clusters in the deployment must be sharded clusters. Once enabled, you cannot create replica sets. operationId: toggleRegionalizedPrivateEndpointSetting @@ -45213,7 +45213,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45230,9 +45233,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint: get: description: Returns all private endpoints for one serverless instance. You must have at least the Project Read Only role for the project to successfully call this resource. @@ -45270,7 +45270,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45283,9 +45286,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: |- Creates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -45333,7 +45333,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45350,9 +45353,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}: delete: description: Remove one private endpoint from one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -45397,7 +45397,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45410,9 +45413,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Return one private endpoint for one serverless instance. Identify this endpoint using its unique ID. You must have at least the Project Read Only role for the project to successfully call this resource. operationId: getServerlessPrivateEndpoint @@ -45456,7 +45456,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45469,9 +45472,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessPrivateEndpoint @@ -45522,7 +45522,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45539,9 +45542,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateIpMode: get: deprecated: true @@ -45572,7 +45572,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45585,9 +45588,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help patch: deprecated: true description: Disables Connect via Peering Only mode for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45626,7 +45626,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disablePeering --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45643,9 +45646,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api disablePeering --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds: get: description: Returns all private endpoints for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. @@ -45679,7 +45679,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDataFederationPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45692,9 +45695,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: |- Adds one private endpoint for Federated Database Instances and Online Archives to the specified projects. If the endpoint ID already exists and the associated comment is unchanged, Atlas Data Federation makes no change to the endpoint ID list. If the endpoint ID already exists and the associated comment is changed, Atlas Data Federation updates the comment value only in the endpoint ID list. If the endpoint ID doesn't exist, Atlas Data Federation appends the new endpoint to the list of endpoints in the endpoint ID list. Each region has an associated service name for the various endpoints in each region. @@ -45748,7 +45748,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45765,9 +45768,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}: delete: description: Removes one private endpoint for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45805,7 +45805,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45818,9 +45821,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help get: description: Returns the specified private endpoint for Federated Database Instances or Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getDataFederationPrivateEndpoint @@ -45859,7 +45859,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45872,9 +45875,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes: get: description: Returns details of all processes for the specified project. A MongoDB process can be either a `mongod` or `mongos`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45904,7 +45904,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasProcesses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45917,9 +45920,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAtlasProcesses --help /api/atlas/v2/groups/{groupId}/processes/{processId}: get: description: Returns the processes for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45954,7 +45954,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45967,9 +45970,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements: get: description: Get a list of the Coll Stats Latency process-level measurements for the given namespace @@ -46039,7 +46039,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46052,9 +46055,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces: get: description: Return the subset of namespaces from the given process ranked by highest total execution time (descending) within the given time window. @@ -46084,7 +46084,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespacesForHost --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46095,11 +46098,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -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 + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: get: description: Returns the list of databases running on the specified host for the specified project. `M0` free clusters, `M2`, `M5`, and serverless clusters have some [operational limits](https://www.mongodb.com/docs/atlas/reference/free-shared-limitations/#operational-limitations). The MongoDB Cloud process must be a `mongod`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46137,7 +46137,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46150,9 +46153,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: get: description: Returns one database running on the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46193,7 +46193,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46206,9 +46209,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: get: description: Returns the measurements of one database for the specified host for the specified project. Returns the database's on-disk storage space based on the MongoDB `dbStats` command output. To calculate some metric series, Atlas takes the rate between every two adjacent points. For these metric series, the first data point has a null value because Atlas can't calculate a rate for the first data point given the query time range. Atlas retrieves database metrics every 20 minutes but reduces frequency when necessary to optimize database performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46275,7 +46275,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46288,9 +46291,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: get: description: Returns the list of disks or partitions for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46328,7 +46328,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskPartitions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46341,9 +46344,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: get: description: Returns measurement details for one disk or partition for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46383,7 +46383,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46396,9 +46399,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: get: description: |- @@ -46481,7 +46481,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46494,9 +46497,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: get: description: |- @@ -46690,7 +46690,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46703,9 +46706,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: get: description: Returns up to 20 namespaces for collections experiencing slow queries on the specified host. If you specify a secondary member of a replica set that hasn't received any database read operations, the endpoint doesn't return any namespaces. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46760,7 +46760,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueryNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46773,9 +46776,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: get: description: Returns log lines for slow queries that the Performance Advisor and Query Profiler identified. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. MongoDB Cloud bases the threshold for slow queries on the average time of operations on your cluster. This enables workload-relevant recommendations. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -46847,7 +46847,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46860,9 +46863,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: get: description: Returns the indexes that the Performance Advisor suggests. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46941,7 +46941,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSuggestedIndexes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46954,9 +46957,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/pushBasedLogExport: delete: description: Disables the push-based log export feature by resetting the project level settings to its default configuration. @@ -46987,7 +46987,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47000,9 +47003,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - - label: Atlas CLI - lang: cURL - source: atlas api deletePushBasedLogConfiguration --help get: description: Fetches the current project level settings for the push-based log export feature. operationId: getPushBasedLogConfiguration @@ -47032,7 +47032,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47045,9 +47048,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getPushBasedLogConfiguration --help patch: description: Updates the project level settings for the push-based log export feature. operationId: updatePushBasedLogConfiguration @@ -47085,7 +47085,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47102,9 +47105,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePushBasedLogConfiguration --help post: description: Configures the project level settings for the push-based log export feature. operationId: createPushBasedLogConfiguration @@ -47142,7 +47142,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47159,9 +47162,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushBasedLogConfiguration --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}: post: description: Requests loading the MongoDB sample dataset into the specified cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -47200,7 +47200,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api loadSampleDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47217,9 +47220,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api loadSampleDataset --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}: get: description: Checks the progress of loading the sample dataset into one cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -47254,7 +47254,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSampleDatasetLoadStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47267,9 +47270,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless: get: description: Returns details for all serverless instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47299,7 +47299,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47312,9 +47315,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServerlessInstances --help post: description: Creates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessInstance @@ -47351,7 +47351,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47368,9 +47371,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessInstance --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs: get: description: Returns all restore jobs for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -47411,7 +47411,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47424,9 +47427,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Restores one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessBackupRestoreJob @@ -47474,7 +47474,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47491,9 +47494,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}: get: description: Returns one restore job for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -47540,7 +47540,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47553,9 +47556,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: get: description: Returns all snapshots of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47596,7 +47596,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47609,9 +47612,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: get: description: Returns one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47658,7 +47658,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47671,9 +47674,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: get: description: Get whether the Serverless Auto Indexing feature is enabled. @@ -47709,7 +47709,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47722,9 +47725,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Set whether the Serverless Auto Indexing feature is enabled. operationId: setServerlessAutoIndexing @@ -47764,7 +47764,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47781,9 +47784,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setServerlessAutoIndexing --help /api/atlas/v2/groups/{groupId}/serverless/{name}: delete: description: Removes one serverless instance from the specified project. The serverless instance must have termination protection disabled in order to be deleted. To use this resource, the requesting API Key must have the Project Owner role. @@ -47823,7 +47823,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47836,9 +47839,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServerlessInstance --help get: description: Returns details for one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getServerlessInstance @@ -47877,7 +47877,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47890,9 +47893,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessInstance @@ -47936,7 +47936,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47953,9 +47956,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessInstance --help /api/atlas/v2/groups/{groupId}/serviceAccounts: get: description: Returns list of Service Accounts for a project with service account details. @@ -47986,7 +47986,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectServiceAccounts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47999,9 +48002,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectServiceAccounts --help post: description: Creates and assigns the specified Service Account to the specified Project. operationId: createProjectServiceAccount @@ -48037,7 +48037,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48054,9 +48057,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectServiceAccount --help /api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}: delete: description: Removes one Service Account from the specified project. @@ -48092,7 +48092,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48105,9 +48108,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectServiceAccount --help get: description: Get project Service Account Details. operationId: getProjectServiceAccount @@ -48141,7 +48141,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48154,9 +48157,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Update Service Account in Project. operationId: updateProjectServiceAccount @@ -48199,7 +48199,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48216,9 +48219,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectServiceAccount --help post: description: Assigns the specified organization Service Account to the specified project. operationId: addProjectServiceAccount @@ -48263,7 +48263,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48280,9 +48283,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectServiceAccount --help /api/atlas/v2/groups/{groupId}/settings: get: description: Returns details about the specified project's settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -48313,7 +48313,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48326,9 +48329,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectSettings --help patch: description: Updates the settings of the specified project. You can update any of the options available. MongoDB cloud only updates the options provided in the request. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProjectSettings @@ -48365,7 +48365,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48382,9 +48385,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectSettings --help /api/atlas/v2/groups/{groupId}/streams: get: description: Returns all stream instances for the specified project. @@ -48413,7 +48413,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48426,9 +48429,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listStreamInstances --help post: description: Creates one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: createStreamInstance @@ -48463,7 +48463,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48480,9 +48483,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}: delete: description: Delete one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. @@ -48519,7 +48519,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48532,9 +48535,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteStreamInstance --help get: description: Returns the details of one stream instance within the specified project. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. operationId: getStreamInstance @@ -48574,7 +48574,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48587,9 +48590,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Update one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: updateStreamInstance @@ -48634,7 +48634,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48651,9 +48654,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs: get: description: 'Downloads the audit logs for the specified Atlas Streams Processing instance. By default, logs cover periods of 30 days. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -48711,7 +48711,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadStreamTenantAuditLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48722,11 +48725,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -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 + --header "Accept: application/vnd.atlas.2024-05-30+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections: get: description: Returns all connections of the stream instance for the specified project.To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. @@ -48763,7 +48763,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48776,9 +48779,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Creates one connection for a stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Stream Processing Owner role. operationId: createStreamConnection @@ -48821,7 +48821,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48838,9 +48841,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamConnection --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}: delete: description: Delete one connection of the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -48883,7 +48883,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48896,9 +48899,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns the details of one stream connection within the specified stream instance. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getStreamConnection @@ -48937,7 +48937,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48950,9 +48953,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Update one connection for the specified stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. operationId: updateStreamConnection @@ -49003,7 +49003,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49020,9 +49023,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamConnection --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor: post: description: Create one Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49066,7 +49066,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49083,9 +49086,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamProcessor --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}: delete: description: Delete a Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49126,7 +49126,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49139,9 +49142,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Get one Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. operationId: getStreamProcessor @@ -49183,7 +49183,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49196,9 +49199,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start: post: description: Start a Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49241,7 +49241,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api startStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49258,9 +49261,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api startStreamProcessor --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop: post: description: Stop a Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49303,7 +49303,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api stopStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49320,9 +49323,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api stopStreamProcessor --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors: get: description: Returns all Stream Processors within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49362,7 +49362,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamProcessors --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49375,9 +49378,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/teams: get: description: Returns all teams to which the authenticated user has access in the project specified using its unique 24-hexadecimal digit identifier. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Read Only role. @@ -49413,7 +49413,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49426,9 +49429,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectTeams --help post: description: Adds one team to the specified project. All members of the team share the same project access. MongoDB Cloud limits the number of users to a maximum of 100 teams per project and a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -49472,7 +49472,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addAllTeamsToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49489,9 +49492,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addAllTeamsToProject --help /api/atlas/v2/groups/{groupId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the project specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Project Owner role. @@ -49533,7 +49533,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49546,9 +49549,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectTeam --help patch: description: Updates the project roles assigned to the specified team. You can grant team roles for specific projects and grant project access roles to users in the team. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -49599,7 +49599,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateTeamRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49616,9 +49619,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateTeamRoles --help /api/atlas/v2/groups/{groupId}/userSecurity: get: description: Returns the current LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -49645,7 +49645,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49658,9 +49661,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getLDAPConfiguration --help patch: description: |- Edits the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -49698,7 +49698,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api saveLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49715,9 +49718,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api saveLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/customerX509: delete: description: |- @@ -49746,7 +49746,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableCustomerManagedX509 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49759,9 +49762,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - - label: Atlas CLI - lang: cURL - source: atlas api disableCustomerManagedX509 --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: delete: description: Removes the current LDAP Distinguished Name mapping captured in the ``userToDNMapping`` document from the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -49788,7 +49788,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49801,9 +49804,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: post: description: Verifies the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -49839,7 +49839,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49856,9 +49859,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api verifyLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}: get: description: Returns the status of one request to verify one LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -49894,7 +49894,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfigurationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49907,9 +49910,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/groups/{groupId}/users: get: description: Returns details about all users in the specified project. Users belong to an organization. To use this resource, the requesting API Key must have the Project Read Only role. @@ -49951,7 +49951,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49964,9 +49967,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectUsers --help /api/atlas/v2/groups/{groupId}/users/{userId}: delete: description: Removes the specified user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50004,7 +50004,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50017,9 +50020,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectUser --help /api/atlas/v2/groups/{groupId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified project. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified project. To use this resource, the requesting API Key must have the Group User Admin role. @@ -50066,7 +50066,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50083,9 +50086,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectRoles --help /api/atlas/v2/groups/{groupId}:migrate: post: description: Migrates a project from its current organization to another organization. All project users and their roles will be copied to the same project in the destination organization. You must include an organization API key with the Organization Owner role for the destination organization to verify access to the destination organization when you authenticate with Programmatic API Keys. Otherwise, the requesting user must have the Organization Owner role in both organizations. To use this resource, the requesting API Key must have the Organization Owner role. @@ -50118,7 +50118,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api migrateProjectToAnotherOrg --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50135,9 +50138,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api migrateProjectToAnotherOrg --help /api/atlas/v2/groups/byName/{groupName}: get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -50177,7 +50177,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50190,9 +50193,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectByName --help /api/atlas/v2/orgs: get: description: Returns all organizations to which the requesting API Key has access. To use this resource, the requesting API Key must have the Organization Member role. @@ -50232,7 +50232,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50245,9 +50248,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizations --help post: description: Creates one organization in MongoDB Cloud and links it to the requesting API Key's organization. To use this resource, the requesting API Key must have the Organization Owner role. The requesting API Key's organization must be a paying organization. To learn more, see [Configure a Paying Organization](https://www.mongodb.com/docs/atlas/billing/#configure-a-paying-organization) in the MongoDB Atlas documentation. operationId: createOrganization @@ -50287,7 +50287,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50304,9 +50307,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganization --help /api/atlas/v2/orgs/{orgId}: delete: description: |- @@ -50345,7 +50345,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50358,9 +50361,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganization --help get: description: Returns one organization to which the requesting API key has access. To use this resource, the requesting API Key must have the Organization Member role. operationId: getOrganization @@ -50392,7 +50392,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50405,9 +50408,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganization --help patch: description: Renames one organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: renameOrganization @@ -50446,7 +50446,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50463,9 +50466,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameOrganization --help /api/atlas/v2/orgs/{orgId}/apiKeys: get: description: Returns all organization API keys for the specified organization. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the console. To use this resource, the requesting API Key must have the Organization Member role. @@ -50498,7 +50498,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50511,9 +50514,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listApiKeys --help post: description: Creates one API key for the specified organization. An organization API key grants programmatic access to an organization. You can't use the API key to log into the console. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -50549,7 +50549,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50566,9 +50569,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified organization. When you remove an API key from an organization, MongoDB Cloud also removes that key from any projects that use that key. To use this resource, the requesting API Key must have the Organization Owner role. @@ -50607,7 +50607,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50620,9 +50623,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteApiKey --help get: description: Returns one organization API key. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the user interface. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -50660,7 +50660,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50673,9 +50676,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates one organization API key in the specified organization. The organization API keys grant programmatic access to an organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -50722,7 +50722,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50739,9 +50742,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList: get: description: Returns all access list entries that you configured for the specified organization API key. To use this resource, the requesting API Key must have the Organization Member role. @@ -50783,7 +50783,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeyAccessListsEntries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50796,9 +50799,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Creates the access list entries for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. operationId: createApiKeyAccessList @@ -50849,7 +50849,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50866,9 +50869,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKeyAccessList --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}: delete: description: Removes the specified access list entry from the specified organization API key. Resources require all API requests originate from the IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. In addition, you cannot remove the requesting IP address from the requesting organization API key. @@ -50919,7 +50919,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKeyAccessListEntry --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50932,9 +50935,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 get: description: Returns one access list entry for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -50982,7 +50982,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50995,9 +50998,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: post: description: Creates a query process within the Cost Explorer for the given parameters. A token is returned that can be used to poll the status of the query and eventually retrieve the results. @@ -51032,7 +51032,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51049,9 +51052,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCostExplorerQueryProcess --help /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}: get: description: Returns the usage details for a Cost Explorer query, if the query is finished and the data is ready to be viewed. If the data is not ready, a 'processing' response willindicate that another request should be sent later to view the data. @@ -51096,7 +51096,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess_1 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51109,9 +51112,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/events: get: description: |- @@ -51173,7 +51173,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51186,9 +51189,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationEvents --help /api/atlas/v2/orgs/{orgId}/events/{eventId}: get: description: |- @@ -51235,7 +51235,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51248,9 +51251,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/federationSettings: get: description: Returns information about the federation settings for the specified organization. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. @@ -51281,7 +51281,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51294,9 +51297,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getFederationSettings --help /api/atlas/v2/orgs/{orgId}/groups: get: description: |- @@ -51343,7 +51343,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51356,9 +51359,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationProjects --help /api/atlas/v2/orgs/{orgId}/invites: get: description: Returns all pending invitations to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. @@ -51397,7 +51397,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51410,9 +51413,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationInvitations --help patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the username of the invited user. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitation @@ -51449,7 +51449,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51466,9 +51469,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitation --help post: description: Invites one MongoDB Cloud user to join the specified organization. The user must accept the invitation to access information within the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createOrganizationInvitation @@ -51505,7 +51505,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51522,9 +51525,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganizationInvitation --help /api/atlas/v2/orgs/{orgId}/invites/{invitationId}: delete: description: Cancels one pending invitation sent to the specified MongoDB Cloud user to join an organization. You can't cancel an invitation that the user accepted. To use this resource, the requesting API Key must have the Organization Owner role. @@ -51561,7 +51561,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51574,9 +51577,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganizationInvitation --help get: description: Returns the details of one pending invitation to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getOrganizationInvitation @@ -51614,7 +51614,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51627,9 +51630,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the unique identification string for that invitation. Use the Return All Organization Invitations endpoint to retrieve IDs for all pending organization invitations. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitationById @@ -51675,7 +51675,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51692,9 +51695,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitationById --help /api/atlas/v2/orgs/{orgId}/invoices: get: description: |- @@ -51785,7 +51785,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51798,9 +51801,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listInvoices --help /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: get: description: |- @@ -51844,7 +51844,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getInvoice --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51857,9 +51860,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: get: description: |- @@ -51904,7 +51904,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadInvoiceCSV --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51917,9 +51920,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/pending: get: description: Returns all invoices accruing charges for the current billing cycle for the specified organization. To use this resource, the requesting API Key must have the Organization Billing Viewer, Organization Billing Admin, or Organization Owner role. If you have a cross-organization setup, you can view linked invoices if you have the Organization Billing Admin or Organization Owner Role. @@ -51948,7 +51948,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPendingInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51961,9 +51964,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: get: description: Return all projects that you can migrate to the specified organization. @@ -51994,7 +51994,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSourceProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52007,9 +52010,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: delete: description: Remove one organization link and its associated public API key. MongoDB Atlas uses the link-token for push live migrations only. Live migrations (push) let you securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. @@ -52037,7 +52037,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52050,9 +52053,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLinkToken --help post: description: Create one link-token that contains all the information required to complete the link. MongoDB Atlas uses the link-token for push live migrations only. Live migration (push) allows you to securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. operationId: createLinkToken @@ -52087,7 +52087,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52104,9 +52107,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLinkToken --help /api/atlas/v2/orgs/{orgId}/serviceAccounts: get: description: Returns list of Service Accounts with service account details. @@ -52137,7 +52137,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServiceAccounts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52150,9 +52153,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServiceAccounts --help post: description: Create Service Account containing client id and client secrets. operationId: createServiceAccount @@ -52187,7 +52187,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52204,9 +52207,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServiceAccount --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}: delete: description: Delete Service Account. @@ -52239,7 +52239,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52252,9 +52255,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServiceAccount --help get: description: Get Service Account Details. operationId: getServiceAccount @@ -52288,7 +52288,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52301,9 +52304,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Update Service Account. operationId: updateServiceAccount @@ -52346,7 +52346,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52363,9 +52366,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServiceAccount --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups: get: description: Returns list of Service Account projects. @@ -52402,7 +52402,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServiceAccountProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52415,9 +52418,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets: post: description: Create Service Account secret. @@ -52459,7 +52459,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServiceAccountSecret --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52476,9 +52479,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServiceAccountSecret --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}: delete: description: Delete Service Account Secret. @@ -52517,7 +52517,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServiceAccountSecret --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52530,9 +52533,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/settings: get: description: Returns details about the specified organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. @@ -52563,7 +52563,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52576,9 +52579,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganizationSettings --help patch: description: Updates the organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationSettings @@ -52615,7 +52615,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52632,9 +52635,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationSettings --help /api/atlas/v2/orgs/{orgId}/teams: get: description: Returns all teams that belong to the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud only returns teams for which you have access. To use this resource, the requesting API Key must have the Organization Member role. @@ -52671,7 +52671,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52684,9 +52687,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationTeams --help post: description: Creates one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud limits the number of teams to a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -52728,7 +52728,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52745,9 +52748,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the organization specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Organization Owner role. @@ -52790,7 +52790,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52803,9 +52806,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteTeam --help get: description: Returns one team that you identified using its unique 24-hexadecimal digit ID. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -52847,7 +52847,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52860,9 +52863,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 patch: description: Renames one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -52913,7 +52913,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52930,9 +52933,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users: get: description: Returns all MongoDB Cloud users assigned to the team specified using its unique 24-hexadecimal digit identifier. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -52979,7 +52979,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listTeamUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52992,9 +52995,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 post: description: Adds one or more MongoDB Cloud users from the specified organization to the specified team. Teams enable you to grant project access roles to MongoDB Cloud users. You can assign up to 250 MongoDB Cloud users from one organization to one team. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -53047,7 +53047,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53064,9 +53067,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addTeamUser --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified team. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. @@ -53116,7 +53116,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53129,9 +53132,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: get: description: Returns one team that you identified using its human-readable name. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -53171,7 +53171,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53184,9 +53187,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -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 /api/atlas/v2/orgs/{orgId}/users: get: description: Returns details about the MongoDB Cloud users associated with the specified organization. Each MongoDB Cloud user returned must belong to the specified organization or to a project within the specified organization. To use this resource, the requesting API Key must have the Organization Member role. @@ -53220,7 +53220,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53233,9 +53236,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationUsers --help /api/atlas/v2/orgs/{orgId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -53276,7 +53276,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeOrganizationUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53289,9 +53292,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeOrganizationUser --help /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified organization. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -53338,7 +53338,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53355,9 +53358,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationRoles --help /api/atlas/v2/unauth/controlPlaneIPAddresses: get: description: Returns all control plane IP addresses. Currently, inbound Atlas control plane IP addresses are not yet available. The inbound IP address list in your API response is empty. To manually retrieve a list of inbound Atlas control plane IP addresses, see [Required Inbound Access](https://www.mongodb.com/docs/atlas/setup-cluster-security/#std-label-atlas-required-inbound-access). @@ -53378,7 +53378,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllControlPlaneIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53391,9 +53394,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllControlPlaneIPAddresses --help /api/atlas/v2/users: post: description: |- @@ -53433,7 +53433,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53450,9 +53453,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createUser --help /api/atlas/v2/users/{userId}: get: description: Returns the details for one MongoDB Cloud user account with the specified unique identifier for the user. You can't use this endpoint to return information on an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. You can always retrieve your own user account. If you are the owner of a MongoDB Cloud organization or project, you can also retrieve the user profile for any user with membership in that organization or project. To use this resource, the requesting API Key can have any role. @@ -53489,7 +53489,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53502,9 +53505,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUser --help /api/atlas/v2/users/byName/{userName}: get: description: Returns the details for one MongoDB Cloud user account with the specified username. You can't use this endpoint to return information about an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. To use this resource, the requesting API Key can have any role. @@ -53539,7 +53539,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUserByUsername --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53552,9 +53555,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUserByUsername --help servers: - url: https://cloud.mongodb.com tags: 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 ed38616cd1..0ad5790cc2 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 @@ -250,18 +250,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getSystemStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -312,18 +312,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationMatchersFieldNames --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -380,18 +380,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listClustersForAllProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -448,18 +448,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listEventTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -507,18 +507,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederationApp --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -578,18 +578,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listConnectedOrgConfigs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -656,18 +656,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api removeConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -732,18 +732,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -819,18 +819,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" } ] } @@ -887,18 +887,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listRoleMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -964,18 +964,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" } ] } @@ -1042,18 +1042,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1121,18 +1121,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1211,18 +1211,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" } ] } @@ -1314,18 +1314,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIdentityProviders --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1391,18 +1391,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" } ] } @@ -1463,18 +1463,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteIdentityProvider --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1539,18 +1539,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1623,18 +1623,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" } ] } @@ -1695,18 +1695,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api revokeJwksFromIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api revokeJwksFromIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1760,18 +1760,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProviderMetadata --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1831,18 +1831,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1922,18 +1922,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" } ] } @@ -2001,18 +2001,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2066,18 +2066,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2129,18 +2129,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2209,18 +2209,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" } ] } @@ -2290,18 +2290,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addUserToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" } ] } @@ -2365,18 +2365,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectIpAccessLists --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2458,18 +2458,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" } ] } @@ -2538,18 +2538,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2619,18 +2619,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2701,18 +2701,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpAccessListStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2772,18 +2772,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2846,18 +2846,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" } ] } @@ -2921,18 +2921,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2997,18 +2997,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3084,18 +3084,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] }, @@ -3174,18 +3174,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] } @@ -3261,18 +3261,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertsByAlertConfigurationId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3348,18 +3348,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlerts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3425,18 +3425,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3514,18 +3514,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api acknowledgeAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" } ] } @@ -3600,18 +3600,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationsByAlertId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3675,18 +3675,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3746,18 +3746,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -3827,18 +3827,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -3922,18 +3922,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKeyRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] }, @@ -4008,18 +4008,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -4070,18 +4070,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4144,18 +4144,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" } ] } @@ -4206,18 +4206,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4277,18 +4277,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" } ] } @@ -4348,18 +4348,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listExportBuckets --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4480,18 +4480,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" } ] } @@ -4558,18 +4558,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -4665,18 +4665,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -4730,18 +4730,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4817,18 +4817,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" } ] } @@ -4879,18 +4879,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderAccessRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4954,18 +4954,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" } ] } @@ -5040,18 +5040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deauthorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -5114,18 +5114,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5207,18 +5207,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api authorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" } ] } @@ -5287,18 +5287,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listClusters --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5377,18 +5377,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" } ] } @@ -5467,18 +5467,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderRegions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -5552,18 +5552,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" } ] } @@ -5637,18 +5637,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedClusterToServerless --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" } ] } @@ -5725,18 +5725,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -5803,18 +5803,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5896,18 +5896,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" } ] } @@ -5979,18 +5979,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupExportJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6068,18 +6068,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" } ] } @@ -6148,18 +6148,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6231,18 +6231,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6323,18 +6323,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -6412,18 +6412,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api cancelBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -6496,18 +6496,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6570,18 +6570,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllBackupSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6642,18 +6642,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6728,18 +6728,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" } ] } @@ -6814,18 +6814,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listReplicaSetBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6900,18 +6900,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api takeSnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" } ] } @@ -6986,18 +6986,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -7073,18 +7073,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7150,18 +7150,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listShardedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7239,18 +7239,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -7326,18 +7326,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -7424,18 +7424,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateSnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -7521,18 +7521,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api downloadSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" } ] } @@ -7615,18 +7615,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" } ] } @@ -7692,18 +7692,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7781,18 +7781,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7858,18 +7858,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7947,18 +7947,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8031,18 +8031,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupCheckpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8124,18 +8124,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupCheckpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8201,18 +8201,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPinnedNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPinnedNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -8298,18 +8298,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinNamespacesPatch --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinNamespacesPatch --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" } ] }, @@ -8395,18 +8395,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinNamespacesPut --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinNamespacesPut --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" } ] } @@ -8483,18 +8483,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api unpinNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api unpinNamespaces --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" } ] } @@ -8579,18 +8579,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8680,18 +8680,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexesDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8775,18 +8775,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2025-06-01" @@ -8865,18 +8865,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8972,18 +8972,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -9051,18 +9051,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -9129,18 +9129,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllCustomZoneMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9220,18 +9220,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomZoneMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" } ] } @@ -9317,18 +9317,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9411,18 +9411,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" } ] } @@ -9591,18 +9591,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRollingIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" } ] } @@ -9678,18 +9678,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOnlineArchives --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9774,18 +9774,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" } ] } @@ -9888,18 +9888,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadOnlineArchiveQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -9981,18 +9981,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -10075,18 +10075,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10183,18 +10183,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" } ] } @@ -10267,18 +10267,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api endOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10349,18 +10349,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10439,18 +10439,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api startOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" } ] } @@ -10520,18 +10520,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10614,18 +10614,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" } ] } @@ -10685,18 +10685,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api testFailover --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" } ] } @@ -10783,18 +10783,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10870,18 +10870,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" } ] } @@ -10960,18 +10960,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11040,18 +11040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11115,18 +11115,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11204,18 +11204,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ] }, @@ -11293,18 +11293,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ] } @@ -11387,18 +11387,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexesCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesCluster --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11480,18 +11480,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" } ] } @@ -11592,18 +11592,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11700,18 +11700,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndexByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexByName --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -11806,18 +11806,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndexByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexByName --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11926,18 +11926,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndexByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexByName --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" } ] } @@ -12019,18 +12019,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndex --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12120,18 +12120,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndex --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12225,18 +12225,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" } ] } @@ -12300,18 +12300,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12384,18 +12384,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" } ] } @@ -12482,18 +12482,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacySnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12572,18 +12572,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12657,18 +12657,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12753,18 +12753,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -12827,18 +12827,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12921,18 +12921,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13068,18 +13068,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13162,18 +13162,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinFeatureCompatibilityVersion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinFeatureCompatibilityVersion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" } ] } @@ -13248,18 +13248,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api unpinFeatureCompatibilityVersion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api unpinFeatureCompatibilityVersion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" } ] } @@ -13370,18 +13370,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13435,18 +13435,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13524,18 +13524,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainerByCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13607,18 +13607,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" } ] } @@ -13678,18 +13678,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13762,18 +13762,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -13835,18 +13835,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13931,18 +13931,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" } ] } @@ -13996,18 +13996,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCustomDatabaseRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14079,18 +14079,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" } ] } @@ -14156,18 +14156,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14228,18 +14228,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14320,18 +14320,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" } ] } @@ -14398,18 +14398,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listFederatedDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14478,18 +14478,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" } ] } @@ -14549,18 +14549,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14621,18 +14621,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14713,18 +14713,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" } ] } @@ -14790,18 +14790,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14873,18 +14873,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14957,18 +14957,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15055,18 +15055,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOneDataFederationQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -15156,18 +15156,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadFederatedDatabaseQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15227,18 +15227,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15462,18 +15462,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" } ] } @@ -15549,18 +15549,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -15631,18 +15631,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15733,18 +15733,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" } ] } @@ -15816,18 +15816,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUserCertificates --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15913,18 +15913,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUserCertificate --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" } ] } @@ -16041,18 +16041,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByClusterName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16166,18 +16166,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByHostname --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16228,18 +16228,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -16308,18 +16308,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" } ] } @@ -16382,18 +16382,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -16465,18 +16465,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" } ] } @@ -16562,18 +16562,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -16646,18 +16646,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16784,18 +16784,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16870,18 +16870,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16935,18 +16935,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listMetricTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17046,18 +17046,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17160,18 +17160,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17266,18 +17266,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17343,18 +17343,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listThirdPartyIntegrations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17433,18 +17433,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "Atlas CLI", + "source": "atlas api deleteThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -17521,18 +17521,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17632,18 +17632,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] }, @@ -17740,18 +17740,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] } @@ -17815,18 +17815,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -17894,18 +17894,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -17967,18 +17967,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -18040,18 +18040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2024-10-04" @@ -18117,18 +18117,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -18205,18 +18205,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -18271,18 +18271,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnAllIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18345,18 +18345,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18437,18 +18437,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -18530,18 +18530,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18634,18 +18634,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -18717,18 +18717,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" } ] } @@ -18800,18 +18800,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api validateMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" } ] } @@ -18881,18 +18881,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getValidationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18952,18 +18952,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19023,18 +19023,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api cutoverMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" } ] } @@ -19082,18 +19082,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "Atlas CLI", + "source": "atlas api resetMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19142,18 +19142,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19213,18 +19213,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" } ] } @@ -19272,18 +19272,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleMaintenanceAutoDefer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" } ] } @@ -19331,18 +19331,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api deferMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" } ] } @@ -19393,18 +19393,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedSlowMs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19455,18 +19455,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "Atlas CLI", + "source": "atlas api disableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19517,18 +19517,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api enableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" } ] } @@ -19640,18 +19640,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLTSVersions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19728,18 +19728,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19812,18 +19812,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" } ] } @@ -19889,18 +19889,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -19964,18 +19964,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20056,18 +20056,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" } ] } @@ -20121,18 +20121,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelines --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20195,18 +20195,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" } ] } @@ -20269,18 +20269,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20344,18 +20344,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20433,18 +20433,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" } ] } @@ -20513,18 +20513,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20609,18 +20609,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20686,18 +20686,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pausePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" } ] } @@ -20763,18 +20763,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api resumePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" } ] } @@ -20859,18 +20859,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineRuns --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20949,18 +20949,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipelineRunDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -21037,18 +21037,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipelineRun --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21125,18 +21125,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api triggerSnapshotIngestion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" } ] } @@ -21202,18 +21202,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" } ] } @@ -21267,18 +21267,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21341,18 +21341,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" } ] } @@ -21417,18 +21417,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21503,18 +21503,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" } ] } @@ -21588,18 +21588,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -21671,18 +21671,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21765,18 +21765,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" } ] } @@ -21845,18 +21845,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPrivateEndpointServices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21934,18 +21934,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -22024,18 +22024,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22133,18 +22133,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" } ] } @@ -22232,18 +22232,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -22332,18 +22332,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22399,18 +22399,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22478,18 +22478,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api disablePeering --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" } ] } @@ -22555,18 +22555,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDataFederationPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22629,18 +22629,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" } ] } @@ -22706,18 +22706,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -22784,18 +22784,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22855,18 +22855,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasProcesses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22928,18 +22928,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22999,18 +22999,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespacesForHost --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForHost --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23081,18 +23081,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23163,18 +23163,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23284,18 +23284,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23366,18 +23366,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskPartitions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23445,18 +23445,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23575,18 +23575,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23812,18 +23812,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23903,18 +23903,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueryNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24018,18 +24018,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24149,18 +24149,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSuggestedIndexes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24271,18 +24271,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24339,18 +24339,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "Atlas CLI", + "source": "atlas api deletePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24405,18 +24405,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24483,18 +24483,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] }, @@ -24561,18 +24561,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] } @@ -24638,18 +24638,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api loadSampleDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" } ] } @@ -24709,18 +24709,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSampleDatasetLoadStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24780,18 +24780,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24857,18 +24857,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" } ] } @@ -24943,18 +24943,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25035,18 +25035,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -25124,18 +25124,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25210,18 +25210,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25297,18 +25297,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25371,18 +25371,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25449,18 +25449,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" } ] } @@ -25529,18 +25529,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25607,18 +25607,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25693,18 +25693,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" } ] } @@ -25764,18 +25764,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectServiceAccounts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectServiceAccounts --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25839,18 +25839,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" } ] } @@ -25914,18 +25914,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectServiceAccount --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25986,18 +25986,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectServiceAccount --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26072,18 +26072,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] }, @@ -26160,18 +26160,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] } @@ -26228,18 +26228,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26305,18 +26305,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" } ] } @@ -26373,18 +26373,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26447,18 +26447,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" } ] } @@ -26524,18 +26524,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -26604,18 +26604,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26693,18 +26693,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" } ] } @@ -26797,18 +26797,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadStreamTenantAuditLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26877,18 +26877,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26963,18 +26963,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" } ] } @@ -27049,18 +27049,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27127,18 +27127,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27225,18 +27225,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" } ] } @@ -27313,18 +27313,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamProcessor --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" } ] } @@ -27396,18 +27396,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamProcessor --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27480,18 +27480,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamProcessor --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27566,18 +27566,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api startStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api startStreamProcessor --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" } ] } @@ -27652,18 +27652,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api stopStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api stopStreamProcessor --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" } ] } @@ -27738,18 +27738,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamProcessors --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamProcessors --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27818,18 +27818,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27905,18 +27905,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addAllTeamsToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" } ] } @@ -27986,18 +27986,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -28082,18 +28082,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateTeamRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -28144,18 +28144,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28218,18 +28218,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api saveLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" } ] } @@ -28277,18 +28277,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "Atlas CLI", + "source": "atlas api disableCustomerManagedX509 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28339,18 +28339,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28415,18 +28415,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api verifyLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" } ] } @@ -28489,18 +28489,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfigurationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28578,18 +28578,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28655,18 +28655,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -28746,18 +28746,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -28816,18 +28816,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api migrateProjectToAnotherOrg --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api migrateProjectToAnotherOrg --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" } ] } @@ -28901,18 +28901,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28981,18 +28981,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" } ] } @@ -29052,18 +29052,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -29121,18 +29121,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29201,18 +29201,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" } ] } @@ -29276,18 +29276,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29351,18 +29351,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -29429,18 +29429,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -29505,18 +29505,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29595,18 +29595,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -29682,18 +29682,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeyAccessListsEntries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29783,18 +29783,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" } ] } @@ -29878,18 +29878,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKeyAccessListEntry --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -29968,18 +29968,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30041,18 +30041,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" } ] } @@ -30127,18 +30127,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess_1 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30237,18 +30237,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30323,18 +30323,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30391,18 +30391,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30476,18 +30476,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30556,18 +30556,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -30633,18 +30633,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] }, @@ -30710,18 +30710,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] } @@ -30787,18 +30787,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -30862,18 +30862,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -30951,18 +30951,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" } ] } @@ -31104,18 +31104,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31169,18 +31169,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPendingInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31252,18 +31252,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getInvoice --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31328,18 +31328,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadInvoiceCSV --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31396,18 +31396,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSourceProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31458,18 +31458,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "Atlas CLI", + "source": "atlas api deleteLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -31532,18 +31532,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" } ] } @@ -31603,18 +31603,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServiceAccounts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServiceAccounts --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -31677,18 +31677,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" } ] } @@ -31748,18 +31748,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServiceAccount --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -31820,18 +31820,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServiceAccount --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -31906,18 +31906,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] } @@ -31986,18 +31986,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServiceAccountProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServiceAccountProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -32071,18 +32071,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServiceAccountSecret --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServiceAccountSecret --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" } ] } @@ -32151,18 +32151,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServiceAccountSecret --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServiceAccountSecret --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -32219,18 +32219,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32296,18 +32296,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" } ] } @@ -32377,18 +32377,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32461,18 +32461,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" } ] } @@ -32542,18 +32542,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -32626,18 +32626,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -32708,18 +32708,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32804,18 +32804,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -32897,18 +32897,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listTeamUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32996,18 +32996,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" } ] } @@ -33089,18 +33089,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api removeTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -33166,18 +33166,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -33246,18 +33246,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeOrganizationUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -33337,18 +33337,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -33385,18 +33385,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api returnAllControlPlaneIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllControlPlaneIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -33458,18 +33458,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" } ] } @@ -33530,18 +33530,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getUserByUsername --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -33604,18 +33604,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUser --help" + "label": "curl (Digest)", + "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\"" } ] } 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 203a3080cf..fb0607b701 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 @@ -30144,7 +30144,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSystemStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30157,9 +30160,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getSystemStatus --help /api/atlas/v2/alertConfigs/matchers/fieldNames: get: description: Get all field names that the `matchers.fieldName` parameter accepts when you create or update an Alert Configuration. You can successfully call this endpoint with any assigned role. @@ -30187,7 +30187,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationMatchersFieldNames --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30200,9 +30203,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help /api/atlas/v2/clusters: get: description: Returns the details for all clusters in all projects to which you have access. Clusters contain a group of hosts that maintain the same data set. The response does not include multi-cloud clusters. To use this resource, the requesting API Key can have any cluster-level role. @@ -30231,7 +30231,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClustersForAllProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30244,9 +30247,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClustersForAllProjects --help /api/atlas/v2/eventTypes: get: description: Returns a list of all event types, along with a description and additional metadata about each event. @@ -30275,7 +30275,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listEventTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30288,9 +30291,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listEventTypes --help /api/atlas/v2/federationSettings/{federationSettingsId}: delete: description: 'Deletes the federation settings instance and all associated data, including identity providers and domains. To use this resource, the requesting API Key must have the Organization Owner role in the last remaining connected organization. **Note**: requests to this resource will fail if there is more than one connected organization in the federation.' @@ -30317,7 +30317,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederationApp --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30330,9 +30333,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederationApp --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: get: description: Returns all connected org configs in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected orgs. @@ -30364,7 +30364,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listConnectedOrgConfigs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30377,9 +30380,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listConnectedOrgConfigs --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: delete: description: 'Removes one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. Note: This request fails if only one connected organization exists in the federation.' @@ -30419,7 +30419,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30432,9 +30435,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeConnectedOrgConfig --help get: description: Returns the specified connected org config from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. operationId: getConnectedOrgConfig @@ -30473,7 +30473,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30486,9 +30489,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: "Updates one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. \n\n**Note** If the organization configuration has no associated identity provider, you can't use this resource to update role mappings or post authorization role grants. \n\n**Note**: The domainRestrictionEnabled field defaults to false if not provided in the request. \n\n**Note**: If the identityProviderId field is not provided, you will disconnect the organization and the identity provider. \n\n**Note**: Currently connected data access identity providers missing from the dataAccessIdentityProviderIds field will be disconnected." operationId: updateConnectedOrgConfig @@ -30534,7 +30534,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30551,9 +30554,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateConnectedOrgConfig --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings: get: description: Returns all role mappings from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -30584,7 +30584,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listRoleMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30597,9 +30600,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Adds one role mapping to the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createRoleMapping @@ -30636,7 +30636,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30653,9 +30656,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}: delete: description: Removes one role mapping in the specified organization from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -30694,7 +30694,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30707,9 +30710,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns one role mapping from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getRoleMapping @@ -30749,7 +30749,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30762,9 +30765,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 put: description: Updates one role mapping in the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateRoleMapping @@ -30811,7 +30811,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30828,9 +30831,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders: get: description: Returns all identity providers with the provided protocol and type in the specified federation. If no protocol is specified, only SAML identity providers will be returned. If no idpType is specified, only WORKFORCE identity providers will be returned. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -30884,7 +30884,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIdentityProviders --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30897,9 +30900,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listIdentityProviders --help post: description: |- Creates one identity provider within the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -30940,7 +30940,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30957,9 +30960,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}: delete: description: "Deletes one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. \n\n**Note**: Requests to this resource will fail if the identity provider has any connected organizations. Before deleting an identity provider, disconnect all organizations and confirm that no organization in your account uses this identity provider. To learn more, see [Manage Organization Mapping for Federated Authentication](https://www.mongodb.com/docs/atlas/security/manage-org-mapping/)." @@ -30994,7 +30994,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31007,9 +31010,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteIdentityProvider --help get: description: 'Returns one identity provider in the specified federation by the identity provider''s id. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. Deprecated versions: v2-{2023-01-01}' operationId: getIdentityProvider @@ -31047,7 +31047,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31060,9 +31063,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: |- Updates one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -31108,7 +31108,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31125,9 +31128,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks: delete: description: "Revokes the JWKS tokens from the requested OIDC identity provider. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. \n\n**Note**: Revoking your JWKS tokens immediately refreshes your IdP public keys from all your Atlas clusters, invalidating previously signed access tokens and logging out all users. You may need to restart your MongoDB clients. All organizations connected to the identity provider will be affected. To learn more, see [Configure OIDC Authorization](https://www.mongodb.com/docs/atlas/security-oidc/#revoke-jwks)." @@ -31162,7 +31162,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api revokeJwksFromIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31175,9 +31178,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - - label: Atlas CLI - lang: cURL - source: atlas api revokeJwksFromIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: get: description: Returns the metadata of one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -31207,7 +31207,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProviderMetadata --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31220,9 +31223,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups: get: description: Returns details about all projects. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Organization Read Only role or higher. @@ -31253,7 +31253,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31266,9 +31269,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjects --help post: description: Creates one project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Read Write role. operationId: createProject @@ -31316,7 +31316,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31333,9 +31336,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProject --help /api/atlas/v2/groups/{groupId}: delete: description: Removes the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. You can delete a project only if there are no Online Archives for the clusters in the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -31364,7 +31364,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31377,9 +31380,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProject --help get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProject @@ -31407,7 +31407,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31420,9 +31423,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProject --help patch: description: Updates the human-readable label that identifies the specified project, or the tags associated with the project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProject @@ -31461,7 +31461,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31478,9 +31481,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProject --help /api/atlas/v2/groups/{groupId}/access: post: description: Adds one MongoDB Cloud user to the specified project. If the MongoDB Cloud user is not a member of the project's organization, then the user must accept their invitation to the organization to access information within the specified project. If the MongoDB Cloud User is already a member of the project's organization, then they will be added to the project immediately and an invitation will not be returned by this resource. To use this resource, the requesting API Key must have the Group User Admin role. @@ -31519,7 +31519,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addUserToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31536,9 +31539,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addUserToProject --help /api/atlas/v2/groups/{groupId}/accessList: get: description: Returns all access list entries from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -31571,7 +31571,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectIpAccessLists --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31584,9 +31587,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectIpAccessLists --help post: description: Adds one or more access list entries to the specified project. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. Write each entry as either one IP address or one CIDR-notated block of IP addresses. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. This endpoint doesn't support concurrent `POST` requests. You must submit multiple `POST` requests synchronously. externalDocs: @@ -31631,7 +31631,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31648,9 +31651,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectIpAccessList --help /api/atlas/v2/groups/{groupId}/accessList/{entryValue}: delete: description: Removes one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains one IP address, one CIDR-notated block of IP addresses, or one AWS Security Group ID. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Owner role. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -31695,7 +31695,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31708,9 +31711,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectIpAccessList --help get: description: Returns one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. This endpoint (`/groups/{GROUP-ID}/accessList`) manages the Project IP Access List. It doesn't manage the access list for MongoDB Cloud organizations. TheProgrammatic API Keys endpoint (`/orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist`) manages those access lists. externalDocs: @@ -31751,7 +31751,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31764,9 +31767,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: get: description: Returns the status of one project IP access list entry. This resource checks if the provided project IP access list entry applies to all cloud providers serving clusters from the specified project. @@ -31807,7 +31807,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpAccessListStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31820,9 +31823,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/alertConfigs: get: description: |- @@ -31855,7 +31855,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31868,9 +31871,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurations --help post: description: |- Creates one alert configuration for the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -31908,7 +31908,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31925,9 +31928,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}: delete: description: |- @@ -31967,7 +31967,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31980,9 +31983,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteAlertConfiguration --help get: description: |- Returns the specified alert configuration from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -32023,7 +32023,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32036,9 +32039,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: |- Enables or disables the specified alert configuration in the specified project. The resource enables the specified alert configuration if currently enabled. The resource disables the specified alert configuration if currently disabled. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -32088,7 +32088,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32105,9 +32108,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAlertConfiguration --help put: description: |- Updates one alert configuration in the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -32159,7 +32159,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32176,9 +32179,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts: get: description: |- @@ -32223,7 +32223,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertsByAlertConfigurationId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32236,9 +32239,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/alerts: get: description: |- @@ -32282,7 +32282,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlerts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32295,9 +32298,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlerts --help /api/atlas/v2/groups/{groupId}/alerts/{alertId}: get: description: |- @@ -32338,7 +32338,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32351,9 +32354,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: |- Confirms receipt of one existing alert. This alert applies to any component in one project. Acknowledging an alert prevents successive notifications. You receive an alert when a monitored component meets or exceeds a value you set until you acknowledge the alert. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -32402,7 +32402,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api acknowledgeAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32419,9 +32422,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api acknowledgeAlert --help /api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs: get: description: |- @@ -32465,7 +32465,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationsByAlertId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32478,9 +32481,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/apiKeys: get: description: Returns all organization API keys that you assigned to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. @@ -32513,7 +32513,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32526,9 +32529,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectApiKeys --help post: description: Creates and assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: createProjectApiKey @@ -32561,7 +32561,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32578,9 +32581,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectApiKey --help /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -32621,7 +32621,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32634,9 +32637,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectApiKey --help patch: description: Updates the roles of the organization API key that you specify for the project that you specify. You must specify at least one valid role for the project. The application removes any roles that you do not include in this request if they were previously set in the organization API key that you specify for the project. operationId: updateApiKeyRoles @@ -32683,7 +32683,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKeyRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32700,9 +32703,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKeyRoles --help post: description: Assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can then use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: addProjectApiKey @@ -32746,7 +32746,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32763,9 +32766,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectApiKey --help /api/atlas/v2/groups/{groupId}/auditLog: get: description: Returns the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. @@ -32792,7 +32792,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32805,9 +32808,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAuditingConfiguration --help patch: description: Updates the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. operationId: updateAuditingConfiguration @@ -32842,7 +32842,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32859,9 +32862,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAuditingConfiguration --help /api/atlas/v2/groups/{groupId}/awsCustomDNS: get: description: Returns the custom DNS configuration for AWS clusters in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -32888,7 +32888,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32901,9 +32904,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAWSCustomDNS --help patch: description: Enables or disables the custom DNS configuration for AWS clusters in the specified project. Enable custom DNS if you use AWS VPC peering and use your own DNS servers. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: toggleAWSCustomDNS @@ -32936,7 +32936,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32953,9 +32956,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAWSCustomDNS --help /api/atlas/v2/groups/{groupId}/backup/exportBuckets: get: description: 'Returns all AWS S3 buckets and Azure Blob Storage Containers associated with the specified Project. To use this resource, the requesting API Key must have the Project Read Only role. Deprecated versions: v2-{2023-01-01}' @@ -32985,7 +32985,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listExportBuckets --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32998,9 +33001,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: 'Grants MongoDB Cloud access to the specified AWS S3 Bucket or Azure Blob Storage Container. This enables this Export Bucket to receive Atlas Cloud Backup Snapshots. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' operationId: createExportBucket @@ -33076,7 +33076,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33093,9 +33096,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createExportBucket --help /api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}: delete: description: Revoke MongoDB Cloud access to the specified AWS S3 Bucket or Azure Blob Storage Container. This prevents this Export Bucket from receiving Atlas Cloud Backup Snapshots. Auto export must be disabled on all clusters in this Project exporting to this Export Bucket before revoking access. To use this resource, the requesting API Key must have the Project Owner role. @@ -33135,7 +33135,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33148,9 +33151,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteExportBucket --help get: description: 'Returns one AWS S3 Bucket or Azure Blob Storage Container associated with the specified Project. To use this resource, the requesting API Key must have the Project Read Only role. Deprecated versions: v2-{2023-01-01}' operationId: getExportBucket @@ -33210,7 +33210,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33223,9 +33226,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/backupCompliancePolicy: get: description: 'Returns the Backup Compliance Policy settings with the specified project. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' @@ -33254,7 +33254,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33265,11 +33268,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getDataProtectionSettings --help + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" put: description: 'Updates the Backup Compliance Policy settings for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' operationId: updateDataProtectionSettings @@ -33313,7 +33313,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33330,9 +33333,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDataProtectionSettings --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess: get: description: Returns all cloud provider access roles with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33359,7 +33359,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderAccessRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33372,9 +33375,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listCloudProviderAccessRoles --help post: description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -33410,7 +33410,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33427,9 +33430,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}: delete: description: Revokes access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. @@ -33473,7 +33473,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deauthorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33486,9 +33489,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - - label: Atlas CLI - lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: get: description: Returns the access role with the specified id and with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33524,7 +33524,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33537,9 +33540,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Grants access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. This API endpoint is one step in a procedure to create unified access for MongoDB Cloud services. externalDocs: @@ -33588,7 +33588,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api authorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33605,9 +33608,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/clusters: get: description: 'Returns the details for all clusters in the specific project to which you have access. Clusters contain a group of hosts that maintain the same data set. The response includes clusters with asymmetrically-sized shards. To use this resource, the requesting API Key must have the Project Read Only role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' @@ -33643,7 +33643,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClusters --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33656,9 +33659,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClusters --help post: description: 'Creates one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. This resource can create clusters with asymmetrically-sized shards. Each project supports up to 25 database deployments. To use this resource, the requesting API Key must have the Project Owner role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' operationId: createCluster @@ -33827,7 +33827,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33844,9 +33847,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCluster --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}: delete: description: 'Removes one cluster from the specified project. The cluster must have termination protection disabled in order to be deleted. To use this resource, the requesting API Key must have the Project Owner role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-01-01}' @@ -33891,7 +33891,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33904,9 +33907,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCluster --help get: description: 'Returns the details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. The response includes clusters with asymmetrically-sized shards. To use this resource, the requesting API Key must have the Project Read Only role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' operationId: getCluster @@ -33945,7 +33945,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33958,9 +33961,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: 'Updates the details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. This resource can update clusters with asymmetrically-sized shards. To update a cluster''s termination protection, the requesting API Key must have the Project Owner role. For all other updates, the requesting API Key must have the Project Cluster Manager role. You can''t modify a paused cluster (`paused : true`). You must call this endpoint to set `paused : false`. After this endpoint responds with `paused : false`, you can call it again with the changes you want to make to the cluster. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' operationId: updateCluster @@ -34009,7 +34009,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34026,9 +34029,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCluster --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements: get: description: Get a list of the Coll Stats Latency cluster-level measurements for the given namespace. @@ -34118,7 +34118,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34131,9 +34134,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces: get: description: Return the subset of namespaces from the given cluster sorted by highest total execution time (descending) within the given time window. @@ -34181,7 +34181,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespacesForCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34194,9 +34197,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: get: description: Returns all Cloud Backup snapshot export jobs associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -34235,7 +34235,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupExportJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34248,9 +34251,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Exports one backup snapshot for dedicated Atlas cluster using Cloud Backups to an Export Bucket. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: createBackupExportJob @@ -34297,7 +34297,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34314,9 +34317,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupExportJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}: get: description: Returns one Cloud Backup snapshot export job associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -34357,7 +34357,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34370,9 +34373,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: get: description: Returns all cloud backup restore jobs for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -34411,7 +34411,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34424,9 +34427,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: |- Restores one snapshot of one cluster from the specified project. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -34477,7 +34477,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34494,9 +34497,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}: delete: description: Cancels one cloud backup restore job of one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -34543,7 +34543,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cancelBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34556,9 +34559,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns one cloud backup restore job for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: getBackupRestoreJob @@ -34602,7 +34602,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34615,9 +34618,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: delete: description: 'Removes all cloud backup schedules for the specified cluster. This schedule defines when MongoDB Cloud takes scheduled snapshots and how long it stores those snapshots. To use this resource, the requesting API Key must have the Project Atlas Admin role. Deprecated versions: v2-{2023-01-01}' @@ -34654,7 +34654,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllBackupSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34667,9 +34670,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: 'Returns the cloud backup schedule for the specified cluster within the specified project. This schedule defines when MongoDB Cloud takes scheduled snapshots and how long it stores those snapshots. To use this resource, the requesting API Key must have the Project Read Only role. Deprecated versions: v2-{2023-01-01}' operationId: getBackupSchedule @@ -34704,7 +34704,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34717,9 +34720,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: 'Updates the cloud backup schedule for one cluster within the specified project. This schedule defines when MongoDB Cloud takes scheduled snapshots and how long it stores those snapshots. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' operationId: updateBackupSchedule @@ -34766,7 +34766,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34783,9 +34786,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateBackupSchedule --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots: get: description: Returns all snapshots of one cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -34826,7 +34826,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listReplicaSetBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34839,9 +34842,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: |- Takes one on-demand snapshot for the specified cluster. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -34888,7 +34888,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api takeSnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34905,9 +34908,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api takeSnapshot --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}: delete: description: Removes the specified snapshot. To use this resource, the requesting API Key must have the Project Owner role. @@ -34954,7 +34954,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34967,9 +34970,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns one snapshot from the specified cluster. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getReplicaSetBackup @@ -35015,7 +35015,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35028,9 +35031,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Changes the expiration date for one cloud backup snapshot for one cluster in the specified project. operationId: updateSnapshotRetention @@ -35083,7 +35083,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateSnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35100,9 +35103,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateSnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}: delete: description: Removes one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -35147,7 +35147,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35160,9 +35163,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getShardedClusterBackup @@ -35208,7 +35208,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35221,9 +35224,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: get: description: Returns all snapshots of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35261,7 +35261,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listShardedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35274,9 +35277,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: post: description: Requests one snapshot for the specified shared cluster. This resource returns a `snapshotURL` that you can use to download the snapshot. This `snapshotURL` remains active for four hours after you make the request. To use this resource, the requesting API Key must have the Project Owner role. @@ -35327,7 +35327,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35344,9 +35347,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api downloadSharedClusterBackup --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore: post: description: Restores the specified cluster. MongoDB Cloud limits which clusters can be the target clusters of a restore. The target cluster can't use encryption at rest, run a major release MongoDB version different than the snapshot, or receive client requests during restores. MongoDB Cloud deletes all existing data on the target cluster prior to the restore operation. To use this resource, the requesting API Key must have the Project Owner role. @@ -35395,7 +35395,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35412,9 +35415,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores: get: description: Returns all restore jobs for the specified M2 or M5 cluster. Restore jobs restore a cluster using a snapshot. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35452,7 +35452,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35465,9 +35468,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: get: description: Returns the specified restore job. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35514,7 +35514,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35527,9 +35530,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: get: description: Returns details for all snapshots for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35567,7 +35567,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35580,9 +35583,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: get: description: Returns details for one snapshot for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35629,7 +35629,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35642,9 +35645,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: get: deprecated: true @@ -35684,7 +35684,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupCheckpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35697,9 +35700,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: get: deprecated: true @@ -35749,7 +35749,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupCheckpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35762,9 +35765,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned: get: description: Returns a list of given cluster's pinned namespaces, a set of namespaces manually selected by users to collect query latency metrics on. @@ -35803,7 +35803,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPinnedNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35816,9 +35819,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Add provided list of namespaces to existing pinned namespaces list for collection-level latency metrics collection for the given Group and Cluster operationId: pinNamespacesPatch @@ -35870,7 +35870,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinNamespacesPatch --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35887,9 +35890,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinNamespacesPatch --help put: description: Pin provided list of namespaces for collection-level latency metrics collection for the given Group and Cluster. This initializes a pinned namespaces list or replaces any existing pinned namespaces list for the Group and Cluster. operationId: pinNamespacesPut @@ -35941,7 +35941,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinNamespacesPut --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35956,11 +35959,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ - -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinNamespacesPut --help + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin: patch: description: Unpin provided list of namespaces for collection-level latency metrics collection for the given Group and Cluster @@ -36006,7 +36006,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api unpinNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36023,9 +36026,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api unpinNamespaces --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes: post: deprecated: true @@ -36076,7 +36076,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36093,9 +36096,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}: get: @@ -36150,7 +36150,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexesDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36163,9 +36166,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}: delete: @@ -36217,7 +36217,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36230,9 +36233,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 x-sunset: "2025-06-01" get: deprecated: true @@ -36281,7 +36281,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36294,9 +36297,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 x-sunset: "2025-06-01" patch: deprecated: true @@ -36356,7 +36356,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36373,9 +36376,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites: get: @@ -36415,7 +36415,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36428,9 +36431,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping: delete: description: 'Removes all custom zone mappings for the specified global cluster. A custom zone mapping matches one ISO 3166-2 location code to a zone in your global cluster. Removing the custom zone mappings restores the default mapping. By default, MongoDB Cloud maps each location code to the closest geographical zone. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' @@ -36469,7 +36469,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllCustomZoneMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36482,9 +36485,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: 'Creates one custom zone mapping for the specified global cluster. A custom zone mapping matches one ISO 3166-2 location code to a zone in your global cluster. By default, MongoDB Cloud maps each location code to the closest geographical zone. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' externalDocs: @@ -36532,7 +36532,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomZoneMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36549,9 +36552,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomZoneMapping --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces: delete: description: 'Removes one managed namespace within the specified global cluster. A managed namespace identifies a collection using the database name, the dot separator, and the collection name. Deleting a managed namespace does not remove the associated collection or data. To use this resource, the requesting API Key must have the Project Data Access Admin role. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' @@ -36602,7 +36602,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36615,9 +36618,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: 'Creates one managed namespace within the specified global cluster. A managed namespace identifies a collection using the database name, the dot separator, and the collection name. To use this resource, the requesting API Key must have the Project Data Access Admin role. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' externalDocs: @@ -36667,7 +36667,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36684,9 +36687,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createManagedNamespace --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index: post: description: Creates an index on the cluster identified by its name in a rolling manner. Creating the index in this way allows index builds on one replica set member as a standalone at a time, starting with the secondary members. Creating indexes in this way requires at least one replica set election. To use this resource, the requesting API Key must have the Project Data Access Admin role. @@ -36797,7 +36797,10 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRollingIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36814,9 +36817,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRollingIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives: get: description: Returns details of all online archives. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36858,7 +36858,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOnlineArchives --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36871,9 +36874,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Creates one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -36924,7 +36924,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36941,9 +36944,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}: delete: description: Removes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. @@ -36993,7 +36993,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37006,9 +37009,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns one online archive for one cluster. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. externalDocs: @@ -37059,7 +37059,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37072,9 +37075,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates, pauses, or resumes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -37134,7 +37134,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37151,9 +37154,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz: get: description: 'Downloads query logs for the specified online archive. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -37219,7 +37219,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadOnlineArchiveQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37232,9 +37235,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation: delete: description: Ends a cluster outage simulation. @@ -37277,7 +37277,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api endOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37290,9 +37293,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - - label: Atlas CLI - lang: cURL - source: atlas api endOutageSimulation --help get: description: Returns one outage simulation for one cluster. externalDocs: @@ -37334,7 +37334,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37347,9 +37350,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Starts a cluster outage simulation. externalDocs: @@ -37396,7 +37396,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api startOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37413,9 +37416,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api startOutageSimulation --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs: get: description: 'Returns the advanced configuration details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. Advanced configuration details include the read/write concern, index and oplog limits, and other database settings. This feature isn''t available for `M0` free clusters, `M2` and `M5` shared-tier clusters, or serverless clusters. To use this resource, the requesting API Key must have the Project Read Only role. Deprecated versions: v2-{2023-01-01}' @@ -37456,7 +37456,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37469,9 +37472,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: 'Updates the advanced configuration details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. Advanced configuration details include the read/write concern, index and oplog limits, and other database settings. To use this resource, the requesting API Key must have the Project Cluster Manager role. This feature isn''t available for `M0` free clusters, `M2` and `M5` shared-tier clusters, or serverless clusters. Deprecated versions: v2-{2023-01-01}' externalDocs: @@ -37521,7 +37521,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37538,9 +37541,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries: post: description: 'Starts a failover test for the specified cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. A failover test checks how MongoDB Cloud handles the failure of the cluster''s primary node. During the test, MongoDB Cloud shuts down the primary node and elects a new primary. To use this resource, the requesting API Key must have the Project Cluster Manager role. Deprecated versions: v2-{2023-01-01}' @@ -37574,7 +37574,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api testFailover --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37591,9 +37594,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api testFailover --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs: get: deprecated: true @@ -37646,7 +37646,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37659,9 +37662,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: deprecated: true description: Restores one legacy backup for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). This endpoint doesn't support creating checkpoint restore jobs for sharded clusters, or creating restore jobs for queryable backup snapshots. If you create an automated restore job by specifying `delivery.methodName` of `AUTOMATED_RESTORE` in your request body, MongoDB Cloud removes all existing data on the target cluster prior to the restore. @@ -37706,7 +37706,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37723,9 +37726,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLegacyBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}: get: deprecated: true @@ -37776,7 +37776,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37789,9 +37792,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: delete: description: Deletes the Search Nodes for the specified cluster. @@ -37831,7 +37831,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37844,9 +37847,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: 'Return the Search Nodes for the specified cluster. Deprecated versions: v2-{2023-01-01}' operationId: getAtlasSearchDeployment @@ -37883,7 +37883,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37896,9 +37899,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: 'Updates the Search Nodes for the specified cluster. Deprecated versions: v2-{2023-01-01}' operationId: updateAtlasSearchDeployment @@ -37944,7 +37944,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37961,9 +37964,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchDeployment --help post: description: Creates Search Nodes for the specified cluster. operationId: createAtlasSearchDeployment @@ -38009,7 +38009,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38026,9 +38029,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchDeployment --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes: get: description: Returns all Atlas Search indexes on the specified cluster. Atlas Search indexes contain the indexed fields and the analyzers used to create the indexes. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -38077,7 +38077,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexesCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38090,9 +38093,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Creates one Atlas Search index on the specified collection. Atlas Search indexes define the fields on which to create the index and the analyzers to use when creating the index. Only clusters running MongoDB v4.2 or later can use Atlas Search. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -38141,7 +38141,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38158,9 +38161,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}: get: description: Returns all Atlas Search indexes on the specified collection. Atlas Search indexes contain the indexed fields and the analyzers used to create the indexes. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -38221,7 +38221,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38234,9 +38237,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}: delete: description: Removes one Atlas Search index that you identified with its database, collection, and name. To use this resource, the requesting API key must have the Project Data Access Admin role. This deletion is eventually consistent. @@ -38295,7 +38295,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndexByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38308,9 +38311,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns one Atlas Search index in the specified project. You identify this index using its database, collection and name. Atlas Search index contains the indexed fields and the analyzers used to create the index. To use this resource, the requesting API Key must have the Project Data Access Read Write role. externalDocs: @@ -38368,7 +38368,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndexByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38381,9 +38384,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates one Atlas Search index that you identified with its database, collection name, and index name. Atlas Search indexes define the fields on which to create the index and the analyzers to use when creating the index. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -38450,7 +38450,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndexByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38467,9 +38470,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndexByName --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}: delete: description: Removes one Atlas Search index that you identified with its unique ID. To use this resource, the requesting API key must have the Project Data Access Admin role. This deletion is eventually consistent. @@ -38519,7 +38519,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38532,9 +38535,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns one Atlas Search index in the specified project. You identify this index using its unique ID. Atlas Search index contains the indexed fields and the analyzers used to create the index. To use this resource, the requesting API Key must have the Project Data Access Read Write role. externalDocs: @@ -38589,7 +38589,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38602,9 +38605,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates one Atlas Search index that you identified with its unique ID. Atlas Search indexes define the fields on which to create the index and the analyzers to use when creating the index. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -38662,7 +38662,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38679,9 +38682,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule: get: deprecated: true @@ -38721,7 +38721,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38734,9 +38737,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: deprecated: true description: |- @@ -38782,7 +38782,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38797,11 +38800,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ - -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotSchedule --help + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots: get: deprecated: true @@ -38851,7 +38851,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacySnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38864,9 +38867,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: delete: deprecated: true @@ -38914,7 +38914,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38927,9 +38930,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: deprecated: true description: Returns one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -38974,7 +38974,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38987,9 +38990,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: deprecated: true description: Changes the expiration date for one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -39041,7 +39041,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39058,9 +39061,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status: get: description: Returns the status of all changes that you made to the specified cluster in the specified project. Use this resource to check the progress MongoDB Cloud has made in processing your changes. The response does not include the deployment of new dedicated clusters. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39096,7 +39096,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39109,9 +39112,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion: post: description: Pins the FCV to the current MongoDB version. @@ -39160,7 +39160,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinFeatureCompatibilityVersion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39177,9 +39180,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinFeatureCompatibilityVersion --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion: post: description: Unpins the current fixed Feature Compatibility Version. This feature is not available for clusters on rapid release. @@ -39223,7 +39223,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api unpinFeatureCompatibilityVersion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39240,9 +39243,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api unpinFeatureCompatibilityVersion --help /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: get: description: 'Returns a compressed (.gz) log file that contains a range of log messages for the specified host for the specified project. MongoDB updates process and audit logs from the cluster backend infrastructure every five minutes and contain log data from the previous five minutes. If you poll the API for log files, we recommend polling every five minutes. For example, if the logs are updated at 4:00 UTC and then you poll the API, the API returns log data from the interval between 3:55 UTC and 4:00 UTC. This feature isn''t available for `M0` free clusters, `M2`, `M5`, or serverless clusters. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip". Deprecated versions: v2-{2023-01-01}' @@ -39313,7 +39313,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39326,9 +39329,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/provider/regions: get: description: Returns the list of regions available for the specified cloud provider at the specified tier. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39370,7 +39370,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderRegions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39383,9 +39386,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: post: description: Upgrades a shared-tier cluster in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. Each project supports up to 25 clusters. @@ -39427,7 +39427,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39444,9 +39447,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedCluster --help /api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless: post: description: Upgrades a shared-tier cluster to a serverless instance in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. @@ -39488,7 +39488,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedClusterToServerless --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39505,9 +39508,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedClusterToServerless --help /api/atlas/v2/groups/{groupId}/collStats/metrics: get: description: Returns all available Coll Stats Latency metric names and their respective units for the specified project at the time of request. @@ -39537,7 +39537,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39550,9 +39553,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/containers: get: description: Returns details about all network peering containers in the specified project for the specified cloud provider. If you do not specify the cloud provider, MongoDB Cloud returns details about all network peering containers in the project for Amazon Web Services (AWS). To use this resource, the requesting API Key must have the Project Read Only role. @@ -39595,7 +39595,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainerByCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39608,9 +39611,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help post: description: Creates one new network peering container in the specified project. MongoDB Cloud can deploy Network Peering connections in a network peering container. GCP can have one container per project. AWS and Azure can have one container per cloud provider region. To use this resource, the requesting API Key must have the Project Owner role. operationId: createPeeringContainer @@ -39651,7 +39651,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39668,9 +39671,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/{containerId}: delete: description: Removes one network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -39713,7 +39713,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39726,9 +39729,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringContainer --help get: description: Returns details about one network peering container in one specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringContainer @@ -39764,7 +39764,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39777,9 +39780,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates the network details and labels of one specified network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringContainer @@ -39830,7 +39830,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39847,9 +39850,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/all: get: description: Returns details about all network peering containers in the specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39879,7 +39879,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39892,9 +39895,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/customDBRoles/roles: get: description: Returns all custom roles for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39923,7 +39923,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCustomDatabaseRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39936,9 +39939,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Creates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createCustomDatabaseRole @@ -39979,7 +39979,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39996,9 +39999,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}: delete: description: Removes one custom role from the specified project. You can't remove a custom role that would leave one or more child roles with no parent roles or actions. You also can't remove a custom role that would leave one or more database users without roles. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -40035,7 +40035,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40048,9 +40051,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCustomDatabaseRole --help get: description: Returns one custom role for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getCustomDatabaseRole @@ -40084,7 +40084,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40097,9 +40100,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateCustomDatabaseRole @@ -40146,7 +40146,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40163,9 +40166,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/dataFederation: get: description: Returns the details of all federated database instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only or higher role. @@ -40203,7 +40203,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listFederatedDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40216,9 +40219,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listFederatedDatabases --help post: description: Creates one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createFederatedDatabase @@ -40257,7 +40257,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40274,9 +40277,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}: delete: description: Removes one federated database instance from the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. @@ -40309,7 +40309,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40322,9 +40325,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederatedDatabase --help get: description: Returns the details of one federated database instance within the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getFederatedDatabase @@ -40359,7 +40359,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40372,9 +40375,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates the details of one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or higher role. operationId: updateFederatedDatabase @@ -40421,7 +40421,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40438,9 +40441,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits: get: description: Returns query limits for a federated databases instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40477,7 +40477,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40490,9 +40493,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: delete: description: Deletes one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -40543,7 +40543,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOneDataFederationInstanceQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40556,9 +40559,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns the details of one query limit for the specified federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: returnFederatedDatabaseQueryLimit @@ -40609,7 +40609,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40622,9 +40625,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Creates or updates one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: createOneDataFederationQueryLimit @@ -40685,7 +40685,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOneDataFederationQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40702,9 +40705,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOneDataFederationQueryLimit --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz: get: description: 'Downloads the query logs for the specified federated database instance. To use this resource, the requesting API Key must have the Project Owner or Project Data Access Read Write roles. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -40761,7 +40761,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadFederatedDatabaseQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40774,9 +40777,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/databaseUsers: get: description: Returns all database users that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40806,7 +40806,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40819,9 +40822,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listDatabaseUsers --help post: description: Creates one database user in the specified project. This MongoDB Cloud supports a maximum of 100 database users per project. If you require more than 100 database users on a project, contact [Support](https://cloud.mongodb.com/support). To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createDatabaseUser @@ -40953,7 +40953,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40970,9 +40973,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}: delete: description: Removes one database user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -41029,7 +41029,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41042,9 +41045,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDatabaseUser --help get: description: Returns one database user that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getDatabaseUser @@ -41098,7 +41098,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41111,9 +41114,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates one database user that belongs to the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: updateDatabaseUser @@ -41180,7 +41180,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41197,9 +41200,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs: get: description: Returns all unexpired X.509 certificates for the specified MongoDB user. This MongoDB user belongs to one project. Atlas manages these certificates and the MongoDB user. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41237,7 +41237,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUserCertificates --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41250,9 +41253,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: |- Generates one X.509 certificate for the specified MongoDB user. Atlas manages the certificate and MongoDB user that belong to one project. To use this resource, the requesting API Key must have the Project Owner role. @@ -41308,7 +41308,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUserCertificate --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41325,9 +41328,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUserCertificate --help /api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}: get: description: Returns the access logs of one cluster identified by the cluster's name. Access logs contain a list of authentication requests made against your cluster. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -41400,7 +41400,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByClusterName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41413,9 +41416,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: get: description: Returns the access logs of one cluster identified by the cluster's hostname. Access logs contain a list of authentication requests made against your clusters. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -41485,7 +41485,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByHostname --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41496,11 +41499,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -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 + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" /api/atlas/v2/groups/{groupId}/encryptionAtRest: get: description: |- @@ -41530,7 +41530,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41543,9 +41546,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getEncryptionAtRest --help patch: description: |- Updates the configuration for encryption at rest using the keys you manage through your cloud provider. MongoDB Cloud encrypts all storage even if you don't use your own key management. This resource requires the requesting API Key to have the Project Owner role. This feature isn't available for `M0` free clusters, `M2`, `M5`, or serverless clusters. @@ -41596,7 +41596,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41613,9 +41616,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateEncryptionAtRest --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints: get: description: Returns the private endpoints of the specified cloud provider for encryption at rest using customer key management. @@ -41650,7 +41650,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41663,9 +41666,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Creates a private endpoint in the specified region for encryption at rest using customer key management. operationId: createEncryptionAtRestPrivateEndpoint @@ -41706,7 +41706,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41723,9 +41726,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}: delete: description: Deletes one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. @@ -41776,7 +41776,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41789,9 +41792,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. operationId: getEncryptionAtRestPrivateEndpoint @@ -41834,7 +41834,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41847,9 +41850,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/events: get: description: |- @@ -41933,7 +41933,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41946,9 +41949,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectEvents --help /api/atlas/v2/groups/{groupId}/events/{eventId}: get: description: |- @@ -41995,7 +41995,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42008,9 +42011,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: get: description: Returns all Atlas Search metric types available for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -42039,7 +42039,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listMetricTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42052,9 +42055,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: get: description: Returns the Atlas Search metrics data series within the provided time range for one namespace and index name on the specified process. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -42113,7 +42113,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42126,9 +42129,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: get: description: Returns the Atlas Search index metrics within the specified time range for one namespace in the specified process. @@ -42186,7 +42186,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42199,9 +42202,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: get: description: Returns the Atlas Search hardware and status data series within the provided time range for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -42258,7 +42258,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42271,9 +42274,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/integrations: get: description: Returns the settings that permit integrations with all configured third-party services. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -42307,7 +42307,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listThirdPartyIntegrations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42320,9 +42323,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listThirdPartyIntegrations --help /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: delete: description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -42371,7 +42371,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42384,9 +42387,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteThirdPartyIntegration --help get: description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: getThirdPartyIntegration @@ -42434,7 +42434,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42447,9 +42450,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: createThirdPartyIntegration @@ -42509,7 +42509,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42526,9 +42529,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createThirdPartyIntegration --help put: description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: updateThirdPartyIntegration @@ -42586,7 +42586,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42603,9 +42606,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateThirdPartyIntegration --help /api/atlas/v2/groups/{groupId}/invites: get: deprecated: true @@ -42641,7 +42641,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42654,9 +42657,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectInvitations --help x-sunset: "2024-10-04" patch: deprecated: true @@ -42695,7 +42695,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42712,9 +42715,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitation --help x-sunset: "2024-10-04" post: deprecated: true @@ -42749,7 +42749,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42766,9 +42769,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectInvitation --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/invites/{invitationId}: delete: @@ -42805,7 +42805,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42818,9 +42821,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectInvitation --help x-sunset: "2024-10-04" get: deprecated: true @@ -42859,7 +42859,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42872,9 +42875,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 x-sunset: "2024-10-04" patch: deprecated: true @@ -42921,7 +42921,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42938,9 +42941,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitationById --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/ipAddresses: get: @@ -42970,7 +42970,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42983,9 +42986,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllIPAddresses --help /api/atlas/v2/groups/{groupId}/limits: get: description: Returns all the limits for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43020,7 +43020,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43033,9 +43036,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectLimits --help /api/atlas/v2/groups/{groupId}/limits/{limitName}: delete: description: Removes the specified project limit. Depending on the limit, Atlas either resets the limit to its default value or removes the limit entirely. To use this resource, the requesting API Key must have the Project Owner role. @@ -43102,7 +43102,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43115,9 +43118,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectLimit --help get: description: Returns the specified limit for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProjectLimit @@ -43185,7 +43185,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43198,9 +43201,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: |- Sets the specified project limit. To use this resource, the requesting API Key must have the Project Owner role. @@ -43278,7 +43278,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43295,9 +43298,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setProjectLimit --help /api/atlas/v2/groups/{groupId}/liveMigrations: post: description: |- @@ -43345,7 +43345,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43362,9 +43365,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}: get: description: Return details of one cluster migration job. Each push live migration job uses one migration host. Your API Key must have the Organization Member role to successfully call this resource. @@ -43396,7 +43396,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43409,9 +43412,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: put: description: Cut over the migrated cluster to MongoDB Atlas. Confirm when the cut over completes. When the cut over completes, MongoDB Atlas completes the live migration process and stops synchronizing with the source cluster. Your API Key must have the Organization Owner role to successfully call this resource. @@ -43443,7 +43443,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cutoverMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43460,9 +43463,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api cutoverMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/validate: post: description: 'Verifies whether the provided credentials, available disk space, MongoDB versions, and so on meet the requirements of the migration request. If the check passes, the migration can proceed. Your API Key must have the Organization Owner role to successfully call this resource. Deprecated versions: v2-{2023-01-01}' @@ -43503,7 +43503,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api validateMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43520,9 +43523,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api validateMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}: get: description: Return the status of one migration validation job. Your API Key must have the Organization Owner role to successfully call this resource. @@ -43564,7 +43564,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getValidationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43577,9 +43580,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/maintenanceWindow: delete: description: Resets the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -43605,7 +43605,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resetMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43618,9 +43621,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - - label: Atlas CLI - lang: cURL - source: atlas api resetMaintenanceWindow --help get: description: Returns the maintenance window for the specified project. MongoDB Cloud starts those maintenance activities when needed. You can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: getMaintenanceWindow @@ -43646,7 +43646,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43659,9 +43662,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getMaintenanceWindow --help patch: description: Updates the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateMaintenanceWindow @@ -43695,7 +43695,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43712,9 +43715,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer: post: description: Toggles automatic deferral of the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -43740,7 +43740,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleMaintenanceAutoDefer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43757,9 +43760,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/defer: post: description: Defers the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -43785,7 +43785,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deferMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43802,9 +43805,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api deferMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/managedSlowMs: get: description: Get whether the Managed Slow MS feature is enabled. @@ -43831,7 +43831,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedSlowMs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43844,9 +43847,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getManagedSlowMs --help /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: delete: description: Disables the slow operation threshold that MongoDB Cloud calculated for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -43873,7 +43873,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43886,9 +43889,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - - label: Atlas CLI - lang: cURL - source: atlas api disableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: post: description: Enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -43915,7 +43915,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api enableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43932,9 +43935,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api enableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/mongoDBVersions: get: description: Returns the MongoDB Long Term Support Major Versions available to new clusters in this project. @@ -44002,7 +44002,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLTSVersions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44013,11 +44016,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectLTSVersions --help + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" /api/atlas/v2/groups/{groupId}/peers: get: description: Returns details about all network peering connections in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44059,7 +44059,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44072,9 +44075,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringConnections --help post: description: Creates one new network peering connection in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations and prerequisites, see the Network Peering Documentation. externalDocs: @@ -44116,7 +44116,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44133,9 +44136,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringConnection --help /api/atlas/v2/groups/{groupId}/peers/{peerId}: delete: description: Removes one network peering connection in the specified project. If you Removes the last network peering connection associated with a project, MongoDB Cloud also removes any AWS security groups from the project IP access list. To use this resource, the requesting API Key must have the Project Owner role. @@ -44173,7 +44173,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44186,9 +44189,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringConnection --help get: description: Returns details about one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringConnection @@ -44225,7 +44225,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44238,9 +44241,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringConnection @@ -44288,7 +44288,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44305,9 +44308,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringConnection --help /api/atlas/v2/groups/{groupId}/pipelines: get: description: Returns a list of Data Lake Pipelines. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44337,7 +44337,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelines --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44350,9 +44353,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPipelines --help post: description: Creates one Data Lake Pipeline. operationId: createPipeline @@ -44388,7 +44388,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44405,9 +44408,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}: delete: description: Removes one Data Lake Pipeline. @@ -44444,7 +44444,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44457,9 +44460,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePipeline --help get: description: Returns the details of one Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipeline @@ -44496,7 +44496,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44509,9 +44512,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates one Data Lake Pipeline. operationId: updatePipeline @@ -44558,7 +44558,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44575,9 +44578,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules: get: description: Returns a list of backup schedule policy items that you can use as a Data Lake Pipeline source. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44617,7 +44617,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44630,9 +44633,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: get: description: Returns a list of backup snapshots that you can use to trigger an on demand pipeline run. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44680,7 +44680,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44693,9 +44696,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: post: description: Pauses ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44733,7 +44733,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pausePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44750,9 +44753,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pausePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume: post: description: Resumes ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44790,7 +44790,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resumePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44807,9 +44810,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api resumePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs: get: description: Returns a list of past Data Lake Pipeline runs. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44857,7 +44857,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineRuns --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44870,9 +44873,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: delete: description: Deletes dataset that Atlas generated during the specified pipeline run. @@ -44920,7 +44920,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipelineRunDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44933,9 +44936,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns the details of one Data Lake Pipeline run within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipelineRun @@ -44982,7 +44982,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipelineRun --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44995,9 +44998,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: post: description: Triggers a Data Lake Pipeline ingestion of a specified snapshot. @@ -45042,7 +45042,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api triggerSnapshotIngestion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45059,9 +45062,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api triggerSnapshotIngestion --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService: get: description: Returns the name, interfaces, and state of all private endpoint services for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45101,7 +45101,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPrivateEndpointServices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45114,9 +45117,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: delete: description: Removes one private endpoint service from the specified project. This cloud service provider manages the private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45163,7 +45163,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45176,9 +45179,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns the name, interfaces, and state of the specified private endpoint service from one project. The cloud service provider hosted this private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpointService @@ -45226,7 +45226,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45239,9 +45242,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: post: description: Creates one private endpoint for the specified cloud service provider. This cloud service provider manages the private endpoint service, which in turn manages the private endpoints for the project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations, limitations, and prerequisites, see the MongoDB documentation for setting up a private endpoint. @@ -45301,7 +45301,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45318,9 +45321,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}: delete: description: Removes one private endpoint from the specified project and private endpoint service, as managed by the specified cloud service provider. When the last private endpoint is removed from a given private endpoint service, that private endpoint service is also removed. To use this resource, the requesting API Key must have the Project Owner role. @@ -45374,7 +45374,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45387,9 +45390,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns the connection state of the specified private endpoint. The private endpoint service manages this private endpoint which belongs to one project hosted from one cloud service provider. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpoint @@ -45444,7 +45444,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45457,9 +45460,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: post: description: Creates one private endpoint service for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. When you create a private endpoint service, MongoDB Cloud creates a network container in the project for the cloud provider for which you create the private endpoint service if one doesn't already exist. To learn more about private endpoint terminology in MongoDB Cloud, see Private Endpoint Concepts. To use this resource, the requesting API Key must have the Project Owner role. @@ -45496,7 +45496,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45513,9 +45516,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpointService --help /api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode: get: description: Checks whether each region in the specified cloud service provider can create multiple private endpoints per region. The cloud service provider manages the private endpoint for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45544,7 +45544,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45557,9 +45560,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Enables or disables the ability to create multiple private endpoints per region in all cloud service providers in one project. The cloud service provider manages the private endpoints for the project. Connection strings to existing multi-region and global sharded clusters change when you enable this setting. You must update your applications to use the new connection strings. This might cause downtime. To use this resource, the requesting API Key must have the Project Owner role and all clusters in the deployment must be sharded clusters. Once enabled, you cannot create replica sets. operationId: toggleRegionalizedPrivateEndpointSetting @@ -45594,7 +45594,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45611,9 +45614,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint: get: description: Returns all private endpoints for one serverless instance. You must have at least the Project Read Only role for the project to successfully call this resource. @@ -45651,7 +45651,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45664,9 +45667,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: |- Creates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -45714,7 +45714,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45731,9 +45734,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}: delete: description: Remove one private endpoint from one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -45778,7 +45778,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45791,9 +45794,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Return one private endpoint for one serverless instance. Identify this endpoint using its unique ID. You must have at least the Project Read Only role for the project to successfully call this resource. operationId: getServerlessPrivateEndpoint @@ -45837,7 +45837,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45850,9 +45853,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessPrivateEndpoint @@ -45903,7 +45903,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45920,9 +45923,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateIpMode: get: deprecated: true @@ -45953,7 +45953,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45966,9 +45969,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help patch: deprecated: true description: Disables Connect via Peering Only mode for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46007,7 +46007,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disablePeering --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46024,9 +46027,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api disablePeering --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds: get: description: Returns all private endpoints for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. @@ -46060,7 +46060,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDataFederationPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46073,9 +46076,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: |- Adds one private endpoint for Federated Database Instances and Online Archives to the specified projects. If the endpoint ID already exists and the associated comment is unchanged, Atlas Data Federation makes no change to the endpoint ID list. If the endpoint ID already exists and the associated comment is changed, Atlas Data Federation updates the comment value only in the endpoint ID list. If the endpoint ID doesn't exist, Atlas Data Federation appends the new endpoint to the list of endpoints in the endpoint ID list. Each region has an associated service name for the various endpoints in each region. @@ -46129,7 +46129,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46146,9 +46149,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}: delete: description: Removes one private endpoint for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46186,7 +46186,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46199,9 +46202,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help get: description: Returns the specified private endpoint for Federated Database Instances or Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getDataFederationPrivateEndpoint @@ -46240,7 +46240,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46253,9 +46256,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes: get: description: Returns details of all processes for the specified project. A MongoDB process can be either a `mongod` or `mongos`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46285,7 +46285,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasProcesses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46298,9 +46301,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAtlasProcesses --help /api/atlas/v2/groups/{groupId}/processes/{processId}: get: description: Returns the processes for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46335,7 +46335,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46348,9 +46351,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements: get: description: Get a list of the Coll Stats Latency process-level measurements for the given namespace @@ -46420,7 +46420,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46433,9 +46436,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces: get: description: Return the subset of namespaces from the given process ranked by highest total execution time (descending) within the given time window. @@ -46465,7 +46465,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespacesForHost --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46476,11 +46479,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -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 + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: get: description: Returns the list of databases running on the specified host for the specified project. `M0` free clusters, `M2`, `M5`, and serverless clusters have some [operational limits](https://www.mongodb.com/docs/atlas/reference/free-shared-limitations/#operational-limitations). The MongoDB Cloud process must be a `mongod`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46518,7 +46518,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46531,9 +46534,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: get: description: Returns one database running on the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46574,7 +46574,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46587,9 +46590,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: get: description: Returns the measurements of one database for the specified host for the specified project. Returns the database's on-disk storage space based on the MongoDB `dbStats` command output. To calculate some metric series, Atlas takes the rate between every two adjacent points. For these metric series, the first data point has a null value because Atlas can't calculate a rate for the first data point given the query time range. Atlas retrieves database metrics every 20 minutes but reduces frequency when necessary to optimize database performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46656,7 +46656,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46669,9 +46672,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: get: description: Returns the list of disks or partitions for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46709,7 +46709,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskPartitions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46722,9 +46725,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: get: description: Returns measurement details for one disk or partition for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46764,7 +46764,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46777,9 +46780,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: get: description: |- @@ -46862,7 +46862,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46875,9 +46878,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: get: description: |- @@ -47071,7 +47071,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47084,9 +47087,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: get: description: Returns up to 20 namespaces for collections experiencing slow queries on the specified host. If you specify a secondary member of a replica set that hasn't received any database read operations, the endpoint doesn't return any namespaces. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47141,7 +47141,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueryNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47154,9 +47157,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: get: description: Returns log lines for slow queries that the Performance Advisor and Query Profiler identified. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. MongoDB Cloud bases the threshold for slow queries on the average time of operations on your cluster. This enables workload-relevant recommendations. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -47228,7 +47228,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47241,9 +47244,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: get: description: Returns the indexes that the Performance Advisor suggests. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47322,7 +47322,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSuggestedIndexes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47335,9 +47338,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/pushBasedLogExport: delete: description: Disables the push-based log export feature by resetting the project level settings to its default configuration. @@ -47368,7 +47368,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47381,9 +47384,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - - label: Atlas CLI - lang: cURL - source: atlas api deletePushBasedLogConfiguration --help get: description: Fetches the current project level settings for the push-based log export feature. operationId: getPushBasedLogConfiguration @@ -47413,7 +47413,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47426,9 +47429,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getPushBasedLogConfiguration --help patch: description: Updates the project level settings for the push-based log export feature. operationId: updatePushBasedLogConfiguration @@ -47466,7 +47466,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47483,9 +47486,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePushBasedLogConfiguration --help post: description: Configures the project level settings for the push-based log export feature. operationId: createPushBasedLogConfiguration @@ -47523,7 +47523,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47540,9 +47543,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushBasedLogConfiguration --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}: post: description: Requests loading the MongoDB sample dataset into the specified cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -47581,7 +47581,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api loadSampleDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47598,9 +47601,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api loadSampleDataset --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}: get: description: Checks the progress of loading the sample dataset into one cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -47635,7 +47635,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSampleDatasetLoadStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47648,9 +47651,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless: get: description: Returns details for all serverless instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47680,7 +47680,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47693,9 +47696,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServerlessInstances --help post: description: Creates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessInstance @@ -47732,7 +47732,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47749,9 +47752,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessInstance --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs: get: description: Returns all restore jobs for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -47792,7 +47792,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47805,9 +47808,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Restores one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessBackupRestoreJob @@ -47855,7 +47855,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47872,9 +47875,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}: get: description: Returns one restore job for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -47921,7 +47921,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47934,9 +47937,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: get: description: Returns all snapshots of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47977,7 +47977,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47990,9 +47993,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: get: description: Returns one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -48039,7 +48039,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48052,9 +48055,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: get: description: Get whether the Serverless Auto Indexing feature is enabled. @@ -48090,7 +48090,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48103,9 +48106,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Set whether the Serverless Auto Indexing feature is enabled. operationId: setServerlessAutoIndexing @@ -48145,7 +48145,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48162,9 +48165,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setServerlessAutoIndexing --help /api/atlas/v2/groups/{groupId}/serverless/{name}: delete: description: Removes one serverless instance from the specified project. The serverless instance must have termination protection disabled in order to be deleted. To use this resource, the requesting API Key must have the Project Owner role. @@ -48204,7 +48204,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48217,9 +48220,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServerlessInstance --help get: description: Returns details for one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getServerlessInstance @@ -48258,7 +48258,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48271,9 +48274,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessInstance @@ -48317,7 +48317,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48334,9 +48337,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessInstance --help /api/atlas/v2/groups/{groupId}/serviceAccounts: get: description: Returns list of Service Accounts for a project with service account details. @@ -48367,7 +48367,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectServiceAccounts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48380,9 +48383,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectServiceAccounts --help post: description: Creates and assigns the specified Service Account to the specified Project. operationId: createProjectServiceAccount @@ -48418,7 +48418,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48435,9 +48438,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectServiceAccount --help /api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}: delete: description: Removes one Service Account from the specified project. @@ -48473,7 +48473,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48486,9 +48489,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectServiceAccount --help get: description: Get project Service Account Details. operationId: getProjectServiceAccount @@ -48522,7 +48522,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48535,9 +48538,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Update Service Account in Project. operationId: updateProjectServiceAccount @@ -48580,7 +48580,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48597,9 +48600,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectServiceAccount --help post: description: Assigns the specified organization Service Account to the specified project. operationId: addProjectServiceAccount @@ -48644,7 +48644,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48661,9 +48664,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectServiceAccount --help /api/atlas/v2/groups/{groupId}/settings: get: description: Returns details about the specified project's settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -48694,7 +48694,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48707,9 +48710,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectSettings --help patch: description: Updates the settings of the specified project. You can update any of the options available. MongoDB cloud only updates the options provided in the request. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProjectSettings @@ -48746,7 +48746,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48763,9 +48766,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectSettings --help /api/atlas/v2/groups/{groupId}/streams: get: description: Returns all stream instances for the specified project. @@ -48794,7 +48794,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48807,9 +48810,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listStreamInstances --help post: description: Creates one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: createStreamInstance @@ -48844,7 +48844,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48861,9 +48864,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}: delete: description: Delete one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. @@ -48900,7 +48900,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48913,9 +48916,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteStreamInstance --help get: description: Returns the details of one stream instance within the specified project. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. operationId: getStreamInstance @@ -48955,7 +48955,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48968,9 +48971,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Update one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: updateStreamInstance @@ -49015,7 +49015,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49032,9 +49035,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs: get: description: 'Downloads the audit logs for the specified Atlas Streams Processing instance. By default, logs cover periods of 30 days. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -49092,7 +49092,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadStreamTenantAuditLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49103,11 +49106,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -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 + --header "Accept: application/vnd.atlas.2024-08-05+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections: get: description: Returns all connections of the stream instance for the specified project.To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. @@ -49144,7 +49144,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49157,9 +49160,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Creates one connection for a stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Stream Processing Owner role. operationId: createStreamConnection @@ -49202,7 +49202,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49219,9 +49222,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamConnection --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}: delete: description: Delete one connection of the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49264,7 +49264,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49277,9 +49280,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns the details of one stream connection within the specified stream instance. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getStreamConnection @@ -49318,7 +49318,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49331,9 +49334,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Update one connection for the specified stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. operationId: updateStreamConnection @@ -49384,7 +49384,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49401,9 +49404,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamConnection --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor: post: description: Create one Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49447,7 +49447,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49464,9 +49467,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamProcessor --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}: delete: description: Delete a Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49507,7 +49507,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49520,9 +49523,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Get one Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. operationId: getStreamProcessor @@ -49564,7 +49564,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49577,9 +49580,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start: post: description: Start a Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49622,7 +49622,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api startStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49639,9 +49642,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api startStreamProcessor --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop: post: description: Stop a Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49684,7 +49684,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api stopStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49701,9 +49704,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api stopStreamProcessor --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors: get: description: Returns all Stream Processors within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49743,7 +49743,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamProcessors --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49756,9 +49759,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/teams: get: description: Returns all teams to which the authenticated user has access in the project specified using its unique 24-hexadecimal digit identifier. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Read Only role. @@ -49794,7 +49794,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49807,9 +49810,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectTeams --help post: description: Adds one team to the specified project. All members of the team share the same project access. MongoDB Cloud limits the number of users to a maximum of 100 teams per project and a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -49853,7 +49853,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addAllTeamsToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49870,9 +49873,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addAllTeamsToProject --help /api/atlas/v2/groups/{groupId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the project specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Project Owner role. @@ -49914,7 +49914,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49927,9 +49930,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectTeam --help patch: description: Updates the project roles assigned to the specified team. You can grant team roles for specific projects and grant project access roles to users in the team. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -49980,7 +49980,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateTeamRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49997,9 +50000,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateTeamRoles --help /api/atlas/v2/groups/{groupId}/userSecurity: get: description: Returns the current LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50026,7 +50026,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50039,9 +50042,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getLDAPConfiguration --help patch: description: |- Edits the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50079,7 +50079,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api saveLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50096,9 +50099,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api saveLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/customerX509: delete: description: |- @@ -50127,7 +50127,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableCustomerManagedX509 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50140,9 +50143,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - - label: Atlas CLI - lang: cURL - source: atlas api disableCustomerManagedX509 --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: delete: description: Removes the current LDAP Distinguished Name mapping captured in the ``userToDNMapping`` document from the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50169,7 +50169,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50182,9 +50185,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: post: description: Verifies the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50220,7 +50220,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50237,9 +50240,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api verifyLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}: get: description: Returns the status of one request to verify one LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50275,7 +50275,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfigurationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50288,9 +50291,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/groups/{groupId}/users: get: description: Returns details about all users in the specified project. Users belong to an organization. To use this resource, the requesting API Key must have the Project Read Only role. @@ -50332,7 +50332,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50345,9 +50348,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectUsers --help /api/atlas/v2/groups/{groupId}/users/{userId}: delete: description: Removes the specified user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50385,7 +50385,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50398,9 +50401,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectUser --help /api/atlas/v2/groups/{groupId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified project. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified project. To use this resource, the requesting API Key must have the Group User Admin role. @@ -50447,7 +50447,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50464,9 +50467,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectRoles --help /api/atlas/v2/groups/{groupId}:migrate: post: description: Migrates a project from its current organization to another organization. All project users and their roles will be copied to the same project in the destination organization. You must include an organization API key with the Organization Owner role for the destination organization to verify access to the destination organization when you authenticate with Programmatic API Keys. Otherwise, the requesting user must have the Organization Owner role in both organizations. To use this resource, the requesting API Key must have the Organization Owner role. @@ -50499,7 +50499,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api migrateProjectToAnotherOrg --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50516,9 +50519,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api migrateProjectToAnotherOrg --help /api/atlas/v2/groups/byName/{groupName}: get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -50558,7 +50558,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50571,9 +50574,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectByName --help /api/atlas/v2/orgs: get: description: Returns all organizations to which the requesting API Key has access. To use this resource, the requesting API Key must have the Organization Member role. @@ -50613,7 +50613,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50626,9 +50629,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizations --help post: description: Creates one organization in MongoDB Cloud and links it to the requesting API Key's organization. To use this resource, the requesting API Key must have the Organization Owner role. The requesting API Key's organization must be a paying organization. To learn more, see [Configure a Paying Organization](https://www.mongodb.com/docs/atlas/billing/#configure-a-paying-organization) in the MongoDB Atlas documentation. operationId: createOrganization @@ -50668,7 +50668,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50685,9 +50688,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganization --help /api/atlas/v2/orgs/{orgId}: delete: description: |- @@ -50726,7 +50726,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50739,9 +50742,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganization --help get: description: Returns one organization to which the requesting API key has access. To use this resource, the requesting API Key must have the Organization Member role. operationId: getOrganization @@ -50773,7 +50773,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50786,9 +50789,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganization --help patch: description: Renames one organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: renameOrganization @@ -50827,7 +50827,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50844,9 +50847,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameOrganization --help /api/atlas/v2/orgs/{orgId}/apiKeys: get: description: Returns all organization API keys for the specified organization. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the console. To use this resource, the requesting API Key must have the Organization Member role. @@ -50879,7 +50879,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50892,9 +50895,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listApiKeys --help post: description: Creates one API key for the specified organization. An organization API key grants programmatic access to an organization. You can't use the API key to log into the console. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -50930,7 +50930,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50947,9 +50950,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified organization. When you remove an API key from an organization, MongoDB Cloud also removes that key from any projects that use that key. To use this resource, the requesting API Key must have the Organization Owner role. @@ -50988,7 +50988,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51001,9 +51004,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteApiKey --help get: description: Returns one organization API key. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the user interface. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -51041,7 +51041,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51054,9 +51057,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates one organization API key in the specified organization. The organization API keys grant programmatic access to an organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -51103,7 +51103,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51120,9 +51123,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList: get: description: Returns all access list entries that you configured for the specified organization API key. To use this resource, the requesting API Key must have the Organization Member role. @@ -51164,7 +51164,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeyAccessListsEntries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51177,9 +51180,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Creates the access list entries for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. operationId: createApiKeyAccessList @@ -51230,7 +51230,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51247,9 +51250,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKeyAccessList --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}: delete: description: Removes the specified access list entry from the specified organization API key. Resources require all API requests originate from the IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. In addition, you cannot remove the requesting IP address from the requesting organization API key. @@ -51300,7 +51300,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKeyAccessListEntry --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51313,9 +51316,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 get: description: Returns one access list entry for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -51363,7 +51363,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51376,9 +51379,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: post: description: Creates a query process within the Cost Explorer for the given parameters. A token is returned that can be used to poll the status of the query and eventually retrieve the results. @@ -51413,7 +51413,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51430,9 +51433,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCostExplorerQueryProcess --help /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}: get: description: Returns the usage details for a Cost Explorer query, if the query is finished and the data is ready to be viewed. If the data is not ready, a 'processing' response willindicate that another request should be sent later to view the data. @@ -51477,7 +51477,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess_1 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51490,9 +51493,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/events: get: description: |- @@ -51554,7 +51554,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51567,9 +51570,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationEvents --help /api/atlas/v2/orgs/{orgId}/events/{eventId}: get: description: |- @@ -51616,7 +51616,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51629,9 +51632,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/federationSettings: get: description: Returns information about the federation settings for the specified organization. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. @@ -51662,7 +51662,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51675,9 +51678,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getFederationSettings --help /api/atlas/v2/orgs/{orgId}/groups: get: description: |- @@ -51724,7 +51724,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51737,9 +51740,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationProjects --help /api/atlas/v2/orgs/{orgId}/invites: get: description: Returns all pending invitations to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. @@ -51778,7 +51778,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51791,9 +51794,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationInvitations --help patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the username of the invited user. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitation @@ -51830,7 +51830,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51847,9 +51850,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitation --help post: description: Invites one MongoDB Cloud user to join the specified organization. The user must accept the invitation to access information within the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createOrganizationInvitation @@ -51886,7 +51886,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51903,9 +51906,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganizationInvitation --help /api/atlas/v2/orgs/{orgId}/invites/{invitationId}: delete: description: Cancels one pending invitation sent to the specified MongoDB Cloud user to join an organization. You can't cancel an invitation that the user accepted. To use this resource, the requesting API Key must have the Organization Owner role. @@ -51942,7 +51942,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51955,9 +51958,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganizationInvitation --help get: description: Returns the details of one pending invitation to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getOrganizationInvitation @@ -51995,7 +51995,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52008,9 +52011,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the unique identification string for that invitation. Use the Return All Organization Invitations endpoint to retrieve IDs for all pending organization invitations. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitationById @@ -52056,7 +52056,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52073,9 +52076,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitationById --help /api/atlas/v2/orgs/{orgId}/invoices: get: description: |- @@ -52166,7 +52166,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52179,9 +52182,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listInvoices --help /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: get: description: |- @@ -52225,7 +52225,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getInvoice --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52238,9 +52241,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: get: description: |- @@ -52285,7 +52285,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadInvoiceCSV --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52298,9 +52301,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/pending: get: description: Returns all invoices accruing charges for the current billing cycle for the specified organization. To use this resource, the requesting API Key must have the Organization Billing Viewer, Organization Billing Admin, or Organization Owner role. If you have a cross-organization setup, you can view linked invoices if you have the Organization Billing Admin or Organization Owner Role. @@ -52329,7 +52329,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPendingInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52342,9 +52345,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: get: description: Return all projects that you can migrate to the specified organization. @@ -52375,7 +52375,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSourceProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52388,9 +52391,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: delete: description: Remove one organization link and its associated public API key. MongoDB Atlas uses the link-token for push live migrations only. Live migrations (push) let you securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. @@ -52418,7 +52418,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52431,9 +52434,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLinkToken --help post: description: Create one link-token that contains all the information required to complete the link. MongoDB Atlas uses the link-token for push live migrations only. Live migration (push) allows you to securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. operationId: createLinkToken @@ -52468,7 +52468,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52485,9 +52488,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLinkToken --help /api/atlas/v2/orgs/{orgId}/serviceAccounts: get: description: Returns list of Service Accounts with service account details. @@ -52518,7 +52518,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServiceAccounts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52531,9 +52534,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServiceAccounts --help post: description: Create Service Account containing client id and client secrets. operationId: createServiceAccount @@ -52568,7 +52568,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52585,9 +52588,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServiceAccount --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}: delete: description: Delete Service Account. @@ -52620,7 +52620,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52633,9 +52636,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServiceAccount --help get: description: Get Service Account Details. operationId: getServiceAccount @@ -52669,7 +52669,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52682,9 +52685,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Update Service Account. operationId: updateServiceAccount @@ -52727,7 +52727,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52744,9 +52747,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServiceAccount --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups: get: description: Returns list of Service Account projects. @@ -52783,7 +52783,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServiceAccountProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52796,9 +52799,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets: post: description: Create Service Account secret. @@ -52840,7 +52840,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServiceAccountSecret --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52857,9 +52860,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServiceAccountSecret --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}: delete: description: Delete Service Account Secret. @@ -52898,7 +52898,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServiceAccountSecret --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52911,9 +52914,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/settings: get: description: Returns details about the specified organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. @@ -52944,7 +52944,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52957,9 +52960,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganizationSettings --help patch: description: Updates the organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationSettings @@ -52996,7 +52996,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53013,9 +53016,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationSettings --help /api/atlas/v2/orgs/{orgId}/teams: get: description: Returns all teams that belong to the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud only returns teams for which you have access. To use this resource, the requesting API Key must have the Organization Member role. @@ -53052,7 +53052,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53065,9 +53068,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationTeams --help post: description: Creates one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud limits the number of teams to a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -53109,7 +53109,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53126,9 +53129,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the organization specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Organization Owner role. @@ -53171,7 +53171,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53184,9 +53187,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteTeam --help get: description: Returns one team that you identified using its unique 24-hexadecimal digit ID. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -53228,7 +53228,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53241,9 +53244,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 patch: description: Renames one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -53294,7 +53294,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53311,9 +53314,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users: get: description: Returns all MongoDB Cloud users assigned to the team specified using its unique 24-hexadecimal digit identifier. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -53360,7 +53360,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listTeamUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53373,9 +53376,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 post: description: Adds one or more MongoDB Cloud users from the specified organization to the specified team. Teams enable you to grant project access roles to MongoDB Cloud users. You can assign up to 250 MongoDB Cloud users from one organization to one team. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -53428,7 +53428,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53445,9 +53448,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addTeamUser --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified team. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. @@ -53497,7 +53497,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53510,9 +53513,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: get: description: Returns one team that you identified using its human-readable name. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -53552,7 +53552,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53565,9 +53568,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -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 /api/atlas/v2/orgs/{orgId}/users: get: description: Returns details about the MongoDB Cloud users associated with the specified organization. Each MongoDB Cloud user returned must belong to the specified organization or to a project within the specified organization. To use this resource, the requesting API Key must have the Organization Member role. @@ -53601,7 +53601,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53614,9 +53617,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationUsers --help /api/atlas/v2/orgs/{orgId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -53657,7 +53657,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeOrganizationUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53670,9 +53673,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeOrganizationUser --help /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified organization. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -53719,7 +53719,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53736,9 +53739,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationRoles --help /api/atlas/v2/unauth/controlPlaneIPAddresses: get: description: Returns all control plane IP addresses. Currently, inbound Atlas control plane IP addresses are not yet available. The inbound IP address list in your API response is empty. To manually retrieve a list of inbound Atlas control plane IP addresses, see [Required Inbound Access](https://www.mongodb.com/docs/atlas/setup-cluster-security/#std-label-atlas-required-inbound-access). @@ -53759,7 +53759,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllControlPlaneIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53772,9 +53775,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllControlPlaneIPAddresses --help /api/atlas/v2/users: post: description: |- @@ -53814,7 +53814,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53831,9 +53834,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createUser --help /api/atlas/v2/users/{userId}: get: description: Returns the details for one MongoDB Cloud user account with the specified unique identifier for the user. You can't use this endpoint to return information on an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. You can always retrieve your own user account. If you are the owner of a MongoDB Cloud organization or project, you can also retrieve the user profile for any user with membership in that organization or project. To use this resource, the requesting API Key can have any role. @@ -53870,7 +53870,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53883,9 +53886,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUser --help /api/atlas/v2/users/byName/{userName}: get: description: Returns the details for one MongoDB Cloud user account with the specified username. You can't use this endpoint to return information about an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. To use this resource, the requesting API Key can have any role. @@ -53920,7 +53920,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUserByUsername --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53933,9 +53936,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUserByUsername --help servers: - url: https://cloud.mongodb.com tags: 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 4fb80745d6..9989ccd6eb 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 @@ -250,18 +250,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getSystemStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -312,18 +312,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationMatchersFieldNames --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -380,18 +380,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listClustersForAllProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -448,18 +448,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listEventTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -507,18 +507,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederationApp --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -578,18 +578,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listConnectedOrgConfigs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -656,18 +656,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api removeConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -732,18 +732,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -819,18 +819,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateConnectedOrgConfig --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" } ] } @@ -887,18 +887,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listRoleMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -964,18 +964,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" } ] } @@ -1042,18 +1042,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1121,18 +1121,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1211,18 +1211,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateRoleMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" } ] } @@ -1314,18 +1314,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIdentityProviders --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1391,18 +1391,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\" \\\n -d '{ }'" } ] } @@ -1463,18 +1463,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteIdentityProvider --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -1539,18 +1539,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1623,18 +1623,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" } ] } @@ -1695,18 +1695,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api revokeJwksFromIdentityProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api revokeJwksFromIdentityProvider --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1760,18 +1760,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIdentityProviderMetadata --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -1831,18 +1831,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -1922,18 +1922,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" } ] } @@ -2001,18 +2001,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2066,18 +2066,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2129,18 +2129,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2209,18 +2209,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\" \\\n -d '{ }'" } ] } @@ -2290,18 +2290,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addUserToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" } ] } @@ -2365,18 +2365,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectIpAccessLists --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2458,18 +2458,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" } ] } @@ -2538,18 +2538,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectIpAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2619,18 +2619,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2701,18 +2701,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectIpAccessListStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -2772,18 +2772,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -2846,18 +2846,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" } ] } @@ -2921,18 +2921,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -2997,18 +2997,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3084,18 +3084,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] }, @@ -3174,18 +3174,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAlertConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" } ] } @@ -3261,18 +3261,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertsByAlertConfigurationId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3348,18 +3348,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlerts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3425,18 +3425,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3514,18 +3514,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api acknowledgeAlert --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\" \\\n -d '{ }'" } ] } @@ -3600,18 +3600,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAlertConfigurationsByAlertId --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -3675,18 +3675,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -3746,18 +3746,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -3827,18 +3827,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -3922,18 +3922,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKeyRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] }, @@ -4008,18 +4008,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -4070,18 +4070,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4144,18 +4144,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAuditingConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\" \\\n -d '{ }'" } ] } @@ -4206,18 +4206,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4277,18 +4277,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleAWSCustomDNS --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\" \\\n -d '{ }'" } ] } @@ -4348,18 +4348,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listExportBuckets --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4480,18 +4480,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" } ] } @@ -4558,18 +4558,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -4665,18 +4665,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getExportBucket --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -4730,18 +4730,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4817,18 +4817,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDataProtectionSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" } ] } @@ -4879,18 +4879,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderAccessRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -4954,18 +4954,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" } ] } @@ -5040,18 +5040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deauthorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -5114,18 +5114,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5207,18 +5207,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api authorizeCloudProviderAccessRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" } ] } @@ -5287,18 +5287,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listClusters --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5377,18 +5377,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" } ] } @@ -5467,18 +5467,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCloudProviderRegions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -5552,18 +5552,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" } ] } @@ -5637,18 +5637,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api upgradeSharedClusterToServerless --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" } ] } @@ -5725,18 +5725,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -5803,18 +5803,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -5896,18 +5896,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\" \\\n -d '{ }'" } ] } @@ -5979,18 +5979,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupExportJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6068,18 +6068,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" } ] } @@ -6148,18 +6148,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupExportJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6231,18 +6231,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6323,18 +6323,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -6412,18 +6412,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api cancelBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -6496,18 +6496,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -6570,18 +6570,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllBackupSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6642,18 +6642,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6728,18 +6728,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateBackupSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" } ] } @@ -6814,18 +6814,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listReplicaSetBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -6900,18 +6900,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api takeSnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" } ] } @@ -6986,18 +6986,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -7073,18 +7073,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getShardedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7150,18 +7150,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listShardedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7239,18 +7239,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -7326,18 +7326,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getReplicaSetBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -7424,18 +7424,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateSnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -7521,18 +7521,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api downloadSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" } ] } @@ -7615,18 +7615,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" } ] } @@ -7692,18 +7692,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7781,18 +7781,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7858,18 +7858,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSharedClusterBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -7947,18 +7947,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSharedClusterBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8031,18 +8031,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupCheckpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8124,18 +8124,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupCheckpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -8201,18 +8201,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPinnedNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPinnedNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -8298,18 +8298,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinNamespacesPatch --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinNamespacesPatch --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" } ] }, @@ -8395,18 +8395,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinNamespacesPut --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinNamespacesPut --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\" \\\n -d '{ }'" } ] } @@ -8483,18 +8483,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api unpinNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api unpinNamespaces --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\" \\\n -d '{ }'" } ] } @@ -8579,18 +8579,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -8680,18 +8680,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexesDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8775,18 +8775,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2025-06-01" @@ -8865,18 +8865,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2025-06-01" @@ -8972,18 +8972,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndexDeprecated --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" } ], "x-sunset": "2025-06-01" @@ -9051,18 +9051,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -9129,18 +9129,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAllCustomZoneMappings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9220,18 +9220,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomZoneMapping --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" } ] } @@ -9317,18 +9317,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9411,18 +9411,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createManagedNamespace --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" } ] } @@ -9591,18 +9591,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createRollingIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" } ] } @@ -9678,18 +9678,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOnlineArchives --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -9774,18 +9774,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" } ] } @@ -9888,18 +9888,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadOnlineArchiveQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -9981,18 +9981,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -10075,18 +10075,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10183,18 +10183,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOnlineArchive --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" } ] } @@ -10267,18 +10267,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api endOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10349,18 +10349,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10439,18 +10439,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api startOutageSimulation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" } ] } @@ -10520,18 +10520,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10614,18 +10614,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateClusterAdvancedConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" } ] } @@ -10685,18 +10685,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api testFailover --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" } ] } @@ -10783,18 +10783,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacyBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -10870,18 +10870,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" } ] } @@ -10960,18 +10960,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacyBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11040,18 +11040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11115,18 +11115,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11204,18 +11204,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ] }, @@ -11293,18 +11293,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchDeployment --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" } ] } @@ -11387,18 +11387,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexesCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesCluster --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11480,18 +11480,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\" \\\n -d '{ }'" } ] } @@ -11592,18 +11592,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasSearchIndexes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -11700,18 +11700,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndexByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexByName --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -11806,18 +11806,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndexByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexByName --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -11926,18 +11926,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndexByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexByName --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\" \\\n -d '{ }'" } ] } @@ -12019,18 +12019,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndex --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12120,18 +12120,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndex --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12225,18 +12225,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateAtlasSearchIndex --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndex --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\" \\\n -d '{ }'" } ] } @@ -12300,18 +12300,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12384,18 +12384,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotSchedule --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" } ] } @@ -12482,18 +12482,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listLegacySnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12572,18 +12572,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -12657,18 +12657,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLegacySnapshot --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -12753,18 +12753,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateLegacySnapshotRetention --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" } ] } @@ -12827,18 +12827,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getClusterStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -12921,18 +12921,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13068,18 +13068,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13162,18 +13162,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pinFeatureCompatibilityVersion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pinFeatureCompatibilityVersion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\" \\\n -d '{ }'" } ] } @@ -13248,18 +13248,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api unpinFeatureCompatibilityVersion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api unpinFeatureCompatibilityVersion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\" \\\n -d '{ }'" } ] } @@ -13370,18 +13370,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13435,18 +13435,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13524,18 +13524,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainerByCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13607,18 +13607,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" } ] } @@ -13678,18 +13678,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringContainers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -13762,18 +13762,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -13835,18 +13835,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -13931,18 +13931,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringContainer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\" \\\n -d '{ }'" } ] } @@ -13996,18 +13996,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listCustomDatabaseRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14079,18 +14079,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" } ] } @@ -14156,18 +14156,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14228,18 +14228,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14320,18 +14320,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateCustomDatabaseRole --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" } ] } @@ -14398,18 +14398,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listFederatedDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14478,18 +14478,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" } ] } @@ -14549,18 +14549,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14621,18 +14621,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -14713,18 +14713,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateFederatedDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\" \\\n -d '{ }'" } ] } @@ -14790,18 +14790,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -14873,18 +14873,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -14957,18 +14957,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnFederatedDatabaseQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15055,18 +15055,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOneDataFederationQueryLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -15156,18 +15156,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadFederatedDatabaseQueryLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -15227,18 +15227,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15462,18 +15462,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" } ] } @@ -15549,18 +15549,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -15631,18 +15631,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15733,18 +15733,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateDatabaseUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" } ] } @@ -15816,18 +15816,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabaseUserCertificates --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -15913,18 +15913,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDatabaseUserCertificate --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" } ] } @@ -16041,18 +16041,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByClusterName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16166,18 +16166,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAccessLogsByHostname --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16228,18 +16228,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -16308,18 +16308,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateEncryptionAtRest --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\" \\\n -d '{ }'" } ] } @@ -16382,18 +16382,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -16465,18 +16465,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" } ] } @@ -16562,18 +16562,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -16646,18 +16646,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16784,18 +16784,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16870,18 +16870,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -16935,18 +16935,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listMetricTypes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17046,18 +17046,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17160,18 +17160,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getIndexMetrics --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17266,18 +17266,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17343,18 +17343,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listThirdPartyIntegrations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -17433,18 +17433,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "label": "Atlas CLI", + "source": "atlas api deleteThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -17521,18 +17521,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -17632,18 +17632,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] }, @@ -17740,18 +17740,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateThirdPartyIntegration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" } ] } @@ -17815,18 +17815,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -17894,18 +17894,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -17967,18 +17967,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -18040,18 +18040,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "label": "curl (Digest)", + "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}\"" } ], "x-sunset": "2024-10-04" @@ -18117,18 +18117,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "label": "curl (Digest)", + "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\"" } ], "x-sunset": "2024-10-04" @@ -18205,18 +18205,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\" \\\n -d '{ }'" } ], "x-sunset": "2024-10-04" @@ -18271,18 +18271,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api returnAllIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18345,18 +18345,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectLimits --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18437,18 +18437,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -18530,18 +18530,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -18634,18 +18634,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setProjectLimit --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\" \\\n -d '{ }'" } ] } @@ -18717,18 +18717,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" } ] } @@ -18800,18 +18800,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api validateMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" } ] } @@ -18881,18 +18881,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getValidationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -18952,18 +18952,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19023,18 +19023,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api cutoverMigration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" } ] } @@ -19082,18 +19082,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "label": "Atlas CLI", + "source": "atlas api resetMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19142,18 +19142,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19213,18 +19213,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\" \\\n -d '{ }'" } ] } @@ -19272,18 +19272,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleMaintenanceAutoDefer --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" } ] } @@ -19331,18 +19331,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api deferMaintenanceWindow --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" } ] } @@ -19393,18 +19393,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getManagedSlowMs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19455,18 +19455,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "label": "Atlas CLI", + "source": "atlas api disableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19517,18 +19517,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api enableSlowOperationThresholding --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" } ] } @@ -19640,18 +19640,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectLTSVersions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -19728,18 +19728,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPeeringConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -19812,18 +19812,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" } ] } @@ -19889,18 +19889,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "label": "Atlas CLI", + "source": "atlas api deletePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -19964,18 +19964,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20056,18 +20056,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePeeringConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\" \\\n -d '{ }'" } ] } @@ -20121,18 +20121,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelines --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20195,18 +20195,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" } ] } @@ -20269,18 +20269,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -20344,18 +20344,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -20433,18 +20433,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\" \\\n -d '{ }'" } ] } @@ -20513,18 +20513,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSchedules --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20609,18 +20609,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineSnapshots --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20686,18 +20686,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api pausePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" } ] } @@ -20763,18 +20763,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api resumePipeline --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" } ] } @@ -20859,18 +20859,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPipelineRuns --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -20949,18 +20949,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePipelineRunDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -21037,18 +21037,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPipelineRun --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21125,18 +21125,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api triggerSnapshotIngestion --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" } ] } @@ -21202,18 +21202,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" } ] } @@ -21267,18 +21267,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21341,18 +21341,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\" \\\n -d '{ }'" } ] } @@ -21417,18 +21417,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21503,18 +21503,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" } ] } @@ -21588,18 +21588,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -21671,18 +21671,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -21765,18 +21765,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" } ] } @@ -21845,18 +21845,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPrivateEndpointServices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -21934,18 +21934,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -22024,18 +22024,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpointService --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22133,18 +22133,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" } ] } @@ -22232,18 +22232,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deletePrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -22332,18 +22332,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22399,18 +22399,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22478,18 +22478,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api disablePeering --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\" \\\n -d '{ }'" } ] } @@ -22555,18 +22555,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDataFederationPrivateEndpoints --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -22629,18 +22629,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" } ] } @@ -22706,18 +22706,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -22784,18 +22784,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDataFederationPrivateEndpoint --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22855,18 +22855,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listAtlasProcesses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22928,18 +22928,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getAtlasProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -22999,18 +22999,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespacesForHost --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForHost --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23081,18 +23081,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDatabases --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23163,18 +23163,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabase --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23284,18 +23284,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDatabaseMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23366,18 +23366,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskPartitions --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23445,18 +23445,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23575,18 +23575,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getDiskMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23812,18 +23812,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -23903,18 +23903,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueryNamespaces --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24018,18 +24018,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSlowQueries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24149,18 +24149,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSuggestedIndexes --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24271,18 +24271,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24339,18 +24339,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "label": "Atlas CLI", + "source": "atlas api deletePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24405,18 +24405,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24483,18 +24483,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updatePushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] }, @@ -24561,18 +24561,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createPushBasedLogConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" } ] } @@ -24638,18 +24638,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api loadSampleDataset --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" } ] } @@ -24709,18 +24709,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getSampleDatasetLoadStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -24780,18 +24780,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -24857,18 +24857,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" } ] } @@ -24943,18 +24943,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackupRestoreJobs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25035,18 +25035,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" } ] } @@ -25124,18 +25124,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackupRestoreJob --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25210,18 +25210,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServerlessBackups --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25297,18 +25297,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessBackup --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -25371,18 +25371,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25449,18 +25449,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api setServerlessAutoIndexing --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" } ] } @@ -25529,18 +25529,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25607,18 +25607,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25693,18 +25693,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServerlessInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\" \\\n -d '{ }'" } ] } @@ -25764,18 +25764,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectServiceAccounts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectServiceAccounts --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -25839,18 +25839,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" } ] } @@ -25914,18 +25914,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteProjectServiceAccount --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -25986,18 +25986,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectServiceAccount --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26072,18 +26072,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] }, @@ -26160,18 +26160,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addProjectServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addProjectServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] } @@ -26228,18 +26228,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26305,18 +26305,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\" \\\n -d '{ }'" } ] } @@ -26373,18 +26373,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26447,18 +26447,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" } ] } @@ -26524,18 +26524,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -26604,18 +26604,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26693,18 +26693,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\" \\\n -d '{ }'" } ] } @@ -26797,18 +26797,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadStreamTenantAuditLogs --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -26877,18 +26877,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamConnections --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -26963,18 +26963,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" } ] } @@ -27049,18 +27049,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27127,18 +27127,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27225,18 +27225,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateStreamConnection --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" } ] } @@ -27313,18 +27313,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createStreamProcessor --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\" \\\n -d '{ }'" } ] } @@ -27396,18 +27396,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteStreamProcessor --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -27480,18 +27480,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getStreamProcessor --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27566,18 +27566,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api startStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api startStreamProcessor --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\" \\\n -d '{ }'" } ] } @@ -27652,18 +27652,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api stopStreamProcessor --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api stopStreamProcessor --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\" \\\n -d '{ }'" } ] } @@ -27738,18 +27738,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listStreamProcessors --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listStreamProcessors --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -27818,18 +27818,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -27905,18 +27905,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addAllTeamsToProject --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" } ] } @@ -27986,18 +27986,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -28082,18 +28082,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateTeamRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -28144,18 +28144,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28218,18 +28218,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api saveLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\" \\\n -d '{ }'" } ] } @@ -28277,18 +28277,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "label": "Atlas CLI", + "source": "atlas api disableCustomerManagedX509 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28339,18 +28339,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api deleteLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28415,18 +28415,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api verifyLDAPConfiguration --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" } ] } @@ -28489,18 +28489,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getLDAPConfigurationStatus --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28578,18 +28578,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listProjectUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -28655,18 +28655,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeProjectUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -28746,18 +28746,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateProjectRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -28817,18 +28817,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listUSSInstances --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listUSSInstances --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -28894,18 +28894,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createUSSInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createUSSInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\" \\\n -d '{ }'" } ] } @@ -28974,18 +28974,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\"" + "label": "Atlas CLI", + "source": "atlas api deleteUSSInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteUSSInstance --help" + "label": "curl (Digest)", + "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}\"" } ], "x-xgen-changelog": { @@ -29055,18 +29055,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getUSSInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUSSInstance --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29141,18 +29141,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateUSSInstance --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateUSSInstance --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\" \\\n -d '{ }'" } ] } @@ -29211,18 +29211,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api migrateProjectToAnotherOrg --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api migrateProjectToAnotherOrg --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\" \\\n -d '{ }'" } ] } @@ -29296,18 +29296,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29376,18 +29376,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" } ] } @@ -29447,18 +29447,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -29516,18 +29516,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29596,18 +29596,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameOrganization --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\" \\\n -d '{ }'" } ] } @@ -29671,18 +29671,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeys --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29746,18 +29746,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" } ] } @@ -29824,18 +29824,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -29900,18 +29900,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -29990,18 +29990,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateApiKey --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" } ] } @@ -30077,18 +30077,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listApiKeyAccessListsEntries --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -30178,18 +30178,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" } ] } @@ -30273,18 +30273,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteApiKeyAccessListEntry --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -30363,18 +30363,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getApiKeyAccessList --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30436,18 +30436,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" } ] } @@ -30522,18 +30522,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api createCostExplorerQueryProcess_1 --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30632,18 +30632,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationEvents --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30718,18 +30718,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationEvent --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30786,18 +30786,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getFederationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30871,18 +30871,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -30951,18 +30951,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationInvitations --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -31028,18 +31028,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] }, @@ -31105,18 +31105,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" } ] } @@ -31182,18 +31182,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -31257,18 +31257,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationInvitation --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -31346,18 +31346,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationInvitationById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" } ] } @@ -31499,18 +31499,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31564,18 +31564,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listPendingInvoices --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31647,18 +31647,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getInvoice --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31723,18 +31723,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api downloadInvoiceCSV --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31814,18 +31814,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api queryLineItemsFromSingleInvoice --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api queryLineItemsFromSingleInvoice --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31882,18 +31882,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listSourceProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -31944,18 +31944,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "label": "Atlas CLI", + "source": "atlas api deleteLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32018,18 +32018,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createLinkToken --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" } ] } @@ -32089,18 +32089,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServiceAccounts --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServiceAccounts --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32163,18 +32163,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\" \\\n -d '{ }'" } ] } @@ -32234,18 +32234,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServiceAccount --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -32306,18 +32306,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getServiceAccount --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32392,18 +32392,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateServiceAccount --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateServiceAccount --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" } ] } @@ -32472,18 +32472,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listServiceAccountProjects --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listServiceAccountProjects --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -32557,18 +32557,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createServiceAccountSecret --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createServiceAccountSecret --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" } ] } @@ -32637,18 +32637,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api deleteServiceAccountSecret --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteServiceAccountSecret --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -32705,18 +32705,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32782,18 +32782,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationSettings --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\" \\\n -d '{ }'" } ] } @@ -32863,18 +32863,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationTeams --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -32947,18 +32947,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" } ] } @@ -33028,18 +33028,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamByName --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -33112,18 +33112,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "label": "Atlas CLI", + "source": "atlas api deleteTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "label": "curl (Digest)", + "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}\"" } ] }, @@ -33194,18 +33194,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getTeamById --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -33290,18 +33290,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api renameTeam --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PATCH \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" } ] } @@ -33383,18 +33383,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listTeamUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "label": "curl (Digest)", + "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\"" } ] }, @@ -33482,18 +33482,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api addTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" } ] } @@ -33575,18 +33575,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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}\"" + "label": "Atlas CLI", + "source": "atlas api removeTeamUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -33652,18 +33652,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api listOrganizationUsers --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -33732,18 +33732,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "label": "Atlas CLI", + "source": "atlas api removeOrganizationUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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}\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "label": "curl (Digest)", + "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}\"" } ] } @@ -33823,18 +33823,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api updateOrganizationRoles --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" } ] } @@ -33871,18 +33871,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api returnAllControlPlaneIPAddresses --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api returnAllControlPlaneIPAddresses --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -33944,18 +33944,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "Atlas CLI", + "source": "atlas api createUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" }, { "lang": "cURL", - "label": "Atlas CLI", - "source": "atlas api createUser --help" + "label": "curl (Digest)", + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/json\" \\\n -X POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" } ] } @@ -34016,18 +34016,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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\"" + "label": "Atlas CLI", + "source": "atlas api getUserByUsername --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "label": "curl (Digest)", + "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\"" } ] } @@ -34090,18 +34090,18 @@ "x-codeSamples": [ { "lang": "cURL", - "label": "curl (Service Account - oauth2)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" + "label": "Atlas CLI", + "source": "atlas api getUser --help" }, { "lang": "cURL", - "label": "curl (Digest)", - "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\"" + "label": "curl (Service Accounts)", + "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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", - "label": "Atlas CLI", - "source": "atlas api getUser --help" + "label": "curl (Digest)", + "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\"" } ] } 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 eca2f843bb..aaa65e2be5 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 @@ -30556,7 +30556,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSystemStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30569,9 +30572,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getSystemStatus --help /api/atlas/v2/alertConfigs/matchers/fieldNames: get: description: Get all field names that the `matchers.fieldName` parameter accepts when you create or update an Alert Configuration. You can successfully call this endpoint with any assigned role. @@ -30599,7 +30599,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationMatchersFieldNames --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30612,9 +30615,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help /api/atlas/v2/clusters: get: description: Returns the details for all clusters in all projects to which you have access. Clusters contain a group of hosts that maintain the same data set. The response does not include multi-cloud clusters. To use this resource, the requesting API Key can have any cluster-level role. @@ -30643,7 +30643,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClustersForAllProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30656,9 +30659,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClustersForAllProjects --help /api/atlas/v2/eventTypes: get: description: Returns a list of all event types, along with a description and additional metadata about each event. @@ -30687,7 +30687,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listEventTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30700,9 +30703,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listEventTypes --help /api/atlas/v2/federationSettings/{federationSettingsId}: delete: description: 'Deletes the federation settings instance and all associated data, including identity providers and domains. To use this resource, the requesting API Key must have the Organization Owner role in the last remaining connected organization. **Note**: requests to this resource will fail if there is more than one connected organization in the federation.' @@ -30729,7 +30729,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederationApp --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30742,9 +30745,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederationApp --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: get: description: Returns all connected org configs in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected orgs. @@ -30776,7 +30776,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listConnectedOrgConfigs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30789,9 +30792,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listConnectedOrgConfigs --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: delete: description: 'Removes one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. Note: This request fails if only one connected organization exists in the federation.' @@ -30831,7 +30831,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30844,9 +30847,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeConnectedOrgConfig --help get: description: Returns the specified connected org config from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. operationId: getConnectedOrgConfig @@ -30885,7 +30885,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30898,9 +30901,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: "Updates one connected organization configuration from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. \n\n**Note** If the organization configuration has no associated identity provider, you can't use this resource to update role mappings or post authorization role grants. \n\n**Note**: The domainRestrictionEnabled field defaults to false if not provided in the request. \n\n**Note**: If the identityProviderId field is not provided, you will disconnect the organization and the identity provider. \n\n**Note**: Currently connected data access identity providers missing from the dataAccessIdentityProviderIds field will be disconnected." operationId: updateConnectedOrgConfig @@ -30946,7 +30946,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateConnectedOrgConfig --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -30963,9 +30966,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateConnectedOrgConfig --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings: get: description: Returns all role mappings from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -30996,7 +30996,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listRoleMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31009,9 +31012,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Adds one role mapping to the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createRoleMapping @@ -31048,7 +31048,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31065,9 +31068,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}: delete: description: Removes one role mapping in the specified organization from the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. @@ -31106,7 +31106,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31119,9 +31122,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns one role mapping from the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getRoleMapping @@ -31161,7 +31161,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31174,9 +31177,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 put: description: Updates one role mapping in the specified organization in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateRoleMapping @@ -31223,7 +31223,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateRoleMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31240,9 +31243,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateRoleMapping --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders: get: description: Returns all identity providers with the provided protocol and type in the specified federation. If no protocol is specified, only SAML identity providers will be returned. If no idpType is specified, only WORKFORCE identity providers will be returned. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -31296,7 +31296,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIdentityProviders --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31309,9 +31312,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listIdentityProviders --help post: description: |- Creates one identity provider within the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -31352,7 +31352,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31369,9 +31372,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}: delete: description: "Deletes one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. \n\n**Note**: Requests to this resource will fail if the identity provider has any connected organizations. Before deleting an identity provider, disconnect all organizations and confirm that no organization in your account uses this identity provider. To learn more, see [Manage Organization Mapping for Federated Authentication](https://www.mongodb.com/docs/atlas/security/manage-org-mapping/)." @@ -31406,7 +31406,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31419,9 +31422,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteIdentityProvider --help get: description: 'Returns one identity provider in the specified federation by the identity provider''s id. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. Deprecated versions: v2-{2023-01-01}' operationId: getIdentityProvider @@ -31459,7 +31459,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31472,9 +31475,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: |- Updates one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -31520,7 +31520,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31537,9 +31540,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks: delete: description: "Revokes the JWKS tokens from the requested OIDC identity provider. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. \n\n**Note**: Revoking your JWKS tokens immediately refreshes your IdP public keys from all your Atlas clusters, invalidating previously signed access tokens and logging out all users. You may need to restart your MongoDB clients. All organizations connected to the identity provider will be affected. To learn more, see [Configure OIDC Authorization](https://www.mongodb.com/docs/atlas/security-oidc/#revoke-jwks)." @@ -31574,7 +31574,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api revokeJwksFromIdentityProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31587,9 +31590,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - - label: Atlas CLI - lang: cURL - source: atlas api revokeJwksFromIdentityProvider --help /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: get: description: Returns the metadata of one identity provider in the specified federation. To use this resource, the requesting API Key must have the Organization Owner role in one of the connected organizations. @@ -31619,7 +31619,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIdentityProviderMetadata --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31632,9 +31635,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups: get: description: Returns details about all projects. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Organization Read Only role or higher. @@ -31665,7 +31665,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31678,9 +31681,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjects --help post: description: Creates one project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Read Write role. operationId: createProject @@ -31728,7 +31728,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31745,9 +31748,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProject --help /api/atlas/v2/groups/{groupId}: delete: description: Removes the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. You can delete a project only if there are no Online Archives for the clusters in the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -31776,7 +31776,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31789,9 +31792,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProject --help get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProject @@ -31819,7 +31819,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31832,9 +31835,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProject --help patch: description: Updates the human-readable label that identifies the specified project, or the tags associated with the project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProject @@ -31873,7 +31873,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31890,9 +31893,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProject --help /api/atlas/v2/groups/{groupId}/access: post: description: Adds one MongoDB Cloud user to the specified project. If the MongoDB Cloud user is not a member of the project's organization, then the user must accept their invitation to the organization to access information within the specified project. If the MongoDB Cloud User is already a member of the project's organization, then they will be added to the project immediately and an invitation will not be returned by this resource. To use this resource, the requesting API Key must have the Group User Admin role. @@ -31931,7 +31931,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addUserToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31948,9 +31951,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addUserToProject --help /api/atlas/v2/groups/{groupId}/accessList: get: description: Returns all access list entries from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -31983,7 +31983,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectIpAccessLists --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -31996,9 +31999,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectIpAccessLists --help post: description: Adds one or more access list entries to the specified project. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. Write each entry as either one IP address or one CIDR-notated block of IP addresses. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. This endpoint doesn't support concurrent `POST` requests. You must submit multiple `POST` requests synchronously. externalDocs: @@ -32043,7 +32043,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32060,9 +32063,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectIpAccessList --help /api/atlas/v2/groups/{groupId}/accessList/{entryValue}: delete: description: Removes one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains one IP address, one CIDR-notated block of IP addresses, or one AWS Security Group ID. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Owner role. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. The `/groups/{GROUP-ID}/accessList` endpoint manages the database IP access list. This endpoint is distinct from the `orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist` endpoint, which manages the access list for MongoDB Cloud organizations. @@ -32107,7 +32107,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectIpAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32120,9 +32123,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectIpAccessList --help get: description: Returns one access list entry from the specified project's IP access list. Each entry in the project's IP access list contains either one IP address or one CIDR-notated block of IP addresses. MongoDB Cloud only allows client connections to the cluster from entries in the project's IP access list. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. This resource replaces the whitelist resource. MongoDB Cloud removed whitelists in July 2021. Update your applications to use this new resource. This endpoint (`/groups/{GROUP-ID}/accessList`) manages the Project IP Access List. It doesn't manage the access list for MongoDB Cloud organizations. TheProgrammatic API Keys endpoint (`/orgs/{ORG-ID}/apiKeys/{API-KEY-ID}/accesslist`) manages those access lists. externalDocs: @@ -32163,7 +32163,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32176,9 +32179,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: get: description: Returns the status of one project IP access list entry. This resource checks if the provided project IP access list entry applies to all cloud providers serving clusters from the specified project. @@ -32219,7 +32219,10 @@ paths: tags: - Project IP Access List x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectIpAccessListStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32232,9 +32235,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/alertConfigs: get: description: |- @@ -32267,7 +32267,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32280,9 +32283,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlertConfigurations --help post: description: |- Creates one alert configuration for the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -32320,7 +32320,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32337,9 +32340,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}: delete: description: |- @@ -32379,7 +32379,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32392,9 +32395,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteAlertConfiguration --help get: description: |- Returns the specified alert configuration from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -32435,7 +32435,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32448,9 +32451,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: |- Enables or disables the specified alert configuration in the specified project. The resource enables the specified alert configuration if currently enabled. The resource disables the specified alert configuration if currently disabled. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -32500,7 +32500,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32517,9 +32520,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAlertConfiguration --help put: description: |- Updates one alert configuration in the specified project. Alert configurations define the triggers and notification methods for alerts. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -32571,7 +32571,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAlertConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32588,9 +32591,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAlertConfiguration --help /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts: get: description: |- @@ -32635,7 +32635,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertsByAlertConfigurationId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32648,9 +32651,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/alerts: get: description: |- @@ -32694,7 +32694,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlerts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32707,9 +32710,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAlerts --help /api/atlas/v2/groups/{groupId}/alerts/{alertId}: get: description: |- @@ -32750,7 +32750,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32763,9 +32766,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: |- Confirms receipt of one existing alert. This alert applies to any component in one project. Acknowledging an alert prevents successive notifications. You receive an alert when a monitored component meets or exceeds a value you set until you acknowledge the alert. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -32814,7 +32814,10 @@ paths: tags: - Alerts x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api acknowledgeAlert --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32831,9 +32834,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api acknowledgeAlert --help /api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs: get: description: |- @@ -32877,7 +32877,10 @@ paths: tags: - Alert Configurations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAlertConfigurationsByAlertId --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32890,9 +32893,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/apiKeys: get: description: Returns all organization API keys that you assigned to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. @@ -32925,7 +32925,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32938,9 +32941,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectApiKeys --help post: description: Creates and assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: createProjectApiKey @@ -32973,7 +32973,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -32990,9 +32993,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectApiKey --help /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33033,7 +33033,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33046,9 +33049,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectApiKey --help patch: description: Updates the roles of the organization API key that you specify for the project that you specify. You must specify at least one valid role for the project. The application removes any roles that you do not include in this request if they were previously set in the organization API key that you specify for the project. operationId: updateApiKeyRoles @@ -33095,7 +33095,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKeyRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33112,9 +33115,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKeyRoles --help post: description: Assigns the specified organization API key to the specified project. Users with the Project Owner role in the project associated with the API key can then use the organization API key to access the resources. To use this resource, the requesting API Key must have the Project Owner role. operationId: addProjectApiKey @@ -33158,7 +33158,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33175,9 +33178,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectApiKey --help /api/atlas/v2/groups/{groupId}/auditLog: get: description: Returns the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. @@ -33204,7 +33204,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33217,9 +33220,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAuditingConfiguration --help patch: description: Updates the auditing configuration for the specified project. The auditing configuration defines the events that MongoDB Cloud records in the audit log. To use this resource, the requesting API Key must have the Project Owner role. This feature isn't available for `M0`, `M2`, `M5`, or serverless clusters. operationId: updateAuditingConfiguration @@ -33254,7 +33254,10 @@ paths: tags: - Auditing x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAuditingConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33271,9 +33274,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAuditingConfiguration --help /api/atlas/v2/groups/{groupId}/awsCustomDNS: get: description: Returns the custom DNS configuration for AWS clusters in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -33300,7 +33300,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33313,9 +33316,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getAWSCustomDNS --help patch: description: Enables or disables the custom DNS configuration for AWS clusters in the specified project. Enable custom DNS if you use AWS VPC peering and use your own DNS servers. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: toggleAWSCustomDNS @@ -33348,7 +33348,10 @@ paths: tags: - AWS Clusters DNS x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleAWSCustomDNS --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33365,9 +33368,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleAWSCustomDNS --help /api/atlas/v2/groups/{groupId}/backup/exportBuckets: get: description: 'Returns all AWS S3 buckets and Azure Blob Storage Containers associated with the specified Project. To use this resource, the requesting API Key must have the Project Read Only role. Deprecated versions: v2-{2023-01-01}' @@ -33397,7 +33397,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listExportBuckets --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33410,9 +33413,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: 'Grants MongoDB Cloud access to the specified AWS S3 Bucket or Azure Blob Storage Container. This enables this Export Bucket to receive Atlas Cloud Backup Snapshots. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' operationId: createExportBucket @@ -33488,7 +33488,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33505,9 +33508,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createExportBucket --help /api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}: delete: description: Revoke MongoDB Cloud access to the specified AWS S3 Bucket or Azure Blob Storage Container. This prevents this Export Bucket from receiving Atlas Cloud Backup Snapshots. Auto export must be disabled on all clusters in this Project exporting to this Export Bucket before revoking access. To use this resource, the requesting API Key must have the Project Owner role. @@ -33547,7 +33547,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33560,9 +33563,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteExportBucket --help get: description: 'Returns one AWS S3 Bucket or Azure Blob Storage Container associated with the specified Project. To use this resource, the requesting API Key must have the Project Read Only role. Deprecated versions: v2-{2023-01-01}' operationId: getExportBucket @@ -33622,7 +33622,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getExportBucket --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33635,9 +33638,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/backupCompliancePolicy: get: description: 'Returns the Backup Compliance Policy settings with the specified project. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' @@ -33666,7 +33666,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33679,9 +33682,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getDataProtectionSettings --help put: description: 'Updates the Backup Compliance Policy settings for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' operationId: updateDataProtectionSettings @@ -33725,7 +33725,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDataProtectionSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33742,9 +33745,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDataProtectionSettings --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess: get: description: Returns all cloud provider access roles with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33771,7 +33771,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderAccessRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33784,9 +33787,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listCloudProviderAccessRoles --help post: description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -33822,7 +33822,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33839,9 +33842,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}: delete: description: Revokes access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. @@ -33885,7 +33885,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deauthorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33898,9 +33901,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - - label: Atlas CLI - lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: get: description: Returns the access role with the specified id and with access to the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -33936,7 +33936,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -33949,9 +33952,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Grants access to the specified project for the specified access role. To use this resource, the requesting API Key must have the Project Owner role. This API endpoint is one step in a procedure to create unified access for MongoDB Cloud services. externalDocs: @@ -34000,7 +34000,10 @@ paths: tags: - Cloud Provider Access x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api authorizeCloudProviderAccessRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34015,11 +34018,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ - -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/clusters: get: description: 'Returns the details for all clusters in the specific project to which you have access. Clusters contain a group of hosts that maintain the same data set. The response includes clusters with asymmetrically-sized shards. To use this resource, the requesting API Key must have the Project Read Only role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' @@ -34055,7 +34055,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listClusters --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34068,9 +34071,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listClusters --help post: description: 'Creates one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. This resource can create clusters with asymmetrically-sized shards. Each project supports up to 25 database deployments. To use this resource, the requesting API Key must have the Project Owner role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' operationId: createCluster @@ -34239,7 +34239,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34256,9 +34259,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCluster --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}: delete: description: 'Removes one cluster from the specified project. The cluster must have termination protection disabled in order to be deleted. To use this resource, the requesting API Key must have the Project Owner role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-01-01}' @@ -34303,7 +34303,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34316,9 +34319,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCluster --help get: description: 'Returns the details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. The response includes clusters with asymmetrically-sized shards. To use this resource, the requesting API Key must have the Project Read Only role. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' operationId: getCluster @@ -34357,7 +34357,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34370,9 +34373,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: 'Updates the details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. This resource can update clusters with asymmetrically-sized shards. To update a cluster''s termination protection, the requesting API Key must have the Project Owner role. For all other updates, the requesting API Key must have the Project Cluster Manager role. You can''t modify a paused cluster (`paused : true`). You must call this endpoint to set `paused : false`. After this endpoint responds with `paused : false`, you can call it again with the changes you want to make to the cluster. This feature is not available for serverless clusters. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' operationId: updateCluster @@ -34421,7 +34421,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34438,9 +34441,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCluster --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements: get: description: Get a list of the Coll Stats Latency cluster-level measurements for the given namespace. @@ -34530,7 +34530,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34543,9 +34546,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces: get: description: Return the subset of namespaces from the given cluster sorted by highest total execution time (descending) within the given time window. @@ -34593,7 +34593,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespacesForCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34606,9 +34609,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: get: description: Returns all Cloud Backup snapshot export jobs associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -34647,7 +34647,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupExportJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34660,9 +34663,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Exports one backup snapshot for dedicated Atlas cluster using Cloud Backups to an Export Bucket. To use this resource, the requesting API Key must have the Project Atlas Admin role. operationId: createBackupExportJob @@ -34709,7 +34709,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34726,9 +34729,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupExportJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}: get: description: Returns one Cloud Backup snapshot export job associated with the specified Atlas cluster. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -34769,7 +34769,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupExportJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34782,9 +34785,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: get: description: Returns all cloud backup restore jobs for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -34823,7 +34823,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34836,9 +34839,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: |- Restores one snapshot of one cluster from the specified project. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -34889,7 +34889,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34906,9 +34909,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}: delete: description: Cancels one cloud backup restore job of one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -34955,7 +34955,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cancelBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -34968,9 +34971,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns one cloud backup restore job for one cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: getBackupRestoreJob @@ -35014,7 +35014,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35027,9 +35030,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: delete: description: 'Removes all cloud backup schedules for the specified cluster. This schedule defines when MongoDB Cloud takes scheduled snapshots and how long it stores those snapshots. To use this resource, the requesting API Key must have the Project Atlas Admin role. Deprecated versions: v2-{2023-01-01}' @@ -35066,7 +35066,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllBackupSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35079,9 +35082,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: 'Returns the cloud backup schedule for the specified cluster within the specified project. This schedule defines when MongoDB Cloud takes scheduled snapshots and how long it stores those snapshots. To use this resource, the requesting API Key must have the Project Read Only role. Deprecated versions: v2-{2023-01-01}' operationId: getBackupSchedule @@ -35116,7 +35116,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35129,9 +35132,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: 'Updates the cloud backup schedule for one cluster within the specified project. This schedule defines when MongoDB Cloud takes scheduled snapshots and how long it stores those snapshots. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-01-01}' operationId: updateBackupSchedule @@ -35178,7 +35178,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateBackupSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35195,9 +35198,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateBackupSchedule --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots: get: description: Returns all snapshots of one cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35238,7 +35238,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listReplicaSetBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35251,9 +35254,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: |- Takes one on-demand snapshot for the specified cluster. Atlas takes on-demand snapshots immediately and scheduled snapshots at regular intervals. If an on-demand snapshot with a status of **queued** or **inProgress** exists, before taking another snapshot, wait until Atlas completes completes processing the previously taken on-demand snapshot. @@ -35300,7 +35300,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api takeSnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35317,9 +35320,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api takeSnapshot --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}: delete: description: Removes the specified snapshot. To use this resource, the requesting API Key must have the Project Owner role. @@ -35366,7 +35366,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35379,9 +35382,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns one snapshot from the specified cluster. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getReplicaSetBackup @@ -35427,7 +35427,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getReplicaSetBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35440,9 +35443,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Changes the expiration date for one cloud backup snapshot for one cluster in the specified project. operationId: updateSnapshotRetention @@ -35495,7 +35495,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateSnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35512,9 +35515,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateSnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}: delete: description: Removes one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -35559,7 +35559,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35572,9 +35575,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns one snapshot of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getShardedClusterBackup @@ -35620,7 +35620,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getShardedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35633,9 +35636,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: get: description: Returns all snapshots of one sharded cluster from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35673,7 +35673,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listShardedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35686,9 +35689,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: post: description: Requests one snapshot for the specified shared cluster. This resource returns a `snapshotURL` that you can use to download the snapshot. This `snapshotURL` remains active for four hours after you make the request. To use this resource, the requesting API Key must have the Project Owner role. @@ -35739,7 +35739,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35756,9 +35759,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api downloadSharedClusterBackup --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore: post: description: Restores the specified cluster. MongoDB Cloud limits which clusters can be the target clusters of a restore. The target cluster can't use encryption at rest, run a major release MongoDB version different than the snapshot, or receive client requests during restores. MongoDB Cloud deletes all existing data on the target cluster prior to the restore operation. To use this resource, the requesting API Key must have the Project Owner role. @@ -35807,7 +35807,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35824,9 +35827,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores: get: description: Returns all restore jobs for the specified M2 or M5 cluster. Restore jobs restore a cluster using a snapshot. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35864,7 +35864,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35877,9 +35880,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: get: description: Returns the specified restore job. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35926,7 +35926,10 @@ paths: tags: - Shared-Tier Restore Jobs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35939,9 +35942,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: get: description: Returns details for all snapshots for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -35979,7 +35979,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSharedClusterBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -35992,9 +35995,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: get: description: Returns details for one snapshot for the specified shared cluster. To use this resource, the requesting API Key must have the Project Read Only role. @@ -36041,7 +36041,10 @@ paths: tags: - Shared-Tier Snapshots x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSharedClusterBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36054,9 +36057,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: get: deprecated: true @@ -36096,7 +36096,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupCheckpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36109,9 +36112,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: get: deprecated: true @@ -36161,7 +36161,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupCheckpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36174,9 +36177,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned: get: description: Returns a list of given cluster's pinned namespaces, a set of namespaces manually selected by users to collect query latency metrics on. @@ -36215,7 +36215,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPinnedNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36228,9 +36231,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Add provided list of namespaces to existing pinned namespaces list for collection-level latency metrics collection for the given Group and Cluster operationId: pinNamespacesPatch @@ -36282,7 +36282,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinNamespacesPatch --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36299,9 +36302,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinNamespacesPatch --help put: description: Pin provided list of namespaces for collection-level latency metrics collection for the given Group and Cluster. This initializes a pinned namespaces list or replaces any existing pinned namespaces list for the Group and Cluster. operationId: pinNamespacesPut @@ -36353,7 +36353,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinNamespacesPut --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36370,9 +36373,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinNamespacesPut --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin: patch: description: Unpin provided list of namespaces for collection-level latency metrics collection for the given Group and Cluster @@ -36418,7 +36418,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api unpinNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36435,9 +36438,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api unpinNamespaces --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes: post: deprecated: true @@ -36488,7 +36488,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36505,9 +36508,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}: get: @@ -36562,7 +36562,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexesDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36575,9 +36578,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}: delete: @@ -36629,7 +36629,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36642,9 +36645,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 x-sunset: "2025-06-01" get: deprecated: true @@ -36693,7 +36693,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36706,9 +36709,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 x-sunset: "2025-06-01" patch: deprecated: true @@ -36768,7 +36768,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndexDeprecated --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36783,11 +36786,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ - -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" \ + -d '{ }' x-sunset: "2025-06-01" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites: get: @@ -36827,7 +36827,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36840,9 +36843,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping: delete: description: 'Removes all custom zone mappings for the specified global cluster. A custom zone mapping matches one ISO 3166-2 location code to a zone in your global cluster. Removing the custom zone mappings restores the default mapping. By default, MongoDB Cloud maps each location code to the closest geographical zone. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' @@ -36881,7 +36881,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAllCustomZoneMappings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36894,9 +36897,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: 'Creates one custom zone mapping for the specified global cluster. A custom zone mapping matches one ISO 3166-2 location code to a zone in your global cluster. By default, MongoDB Cloud maps each location code to the closest geographical zone. To use this resource, the requesting API Key must have the Project Owner role. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' externalDocs: @@ -36944,7 +36944,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomZoneMapping --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -36961,9 +36964,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomZoneMapping --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces: delete: description: 'Removes one managed namespace within the specified global cluster. A managed namespace identifies a collection using the database name, the dot separator, and the collection name. Deleting a managed namespace does not remove the associated collection or data. To use this resource, the requesting API Key must have the Project Data Access Admin role. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' @@ -37014,7 +37014,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37027,9 +37030,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: 'Creates one managed namespace within the specified global cluster. A managed namespace identifies a collection using the database name, the dot separator, and the collection name. To use this resource, the requesting API Key must have the Project Data Access Admin role. Deprecated versions: v2-{2023-02-01}, v2-{2023-01-01}' externalDocs: @@ -37079,7 +37079,10 @@ paths: tags: - Global Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createManagedNamespace --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37096,9 +37099,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createManagedNamespace --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index: post: description: Creates an index on the cluster identified by its name in a rolling manner. Creating the index in this way allows index builds on one replica set member as a standalone at a time, starting with the secondary members. Creating indexes in this way requires at least one replica set election. To use this resource, the requesting API Key must have the Project Data Access Admin role. @@ -37209,7 +37209,10 @@ paths: tags: - Rolling Index x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createRollingIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37226,9 +37229,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createRollingIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives: get: description: Returns details of all online archives. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -37270,7 +37270,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOnlineArchives --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37283,9 +37286,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Creates one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -37336,7 +37336,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37353,9 +37356,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}: delete: description: Removes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. @@ -37405,7 +37405,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37418,9 +37421,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns one online archive for one cluster. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Read Only role. externalDocs: @@ -37471,7 +37471,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37484,9 +37487,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates, pauses, or resumes one online archive. This archive stores data from one cluster within one project. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -37546,7 +37546,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOnlineArchive --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37563,9 +37566,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOnlineArchive --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz: get: description: 'Downloads query logs for the specified online archive. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -37631,7 +37631,10 @@ paths: tags: - Online Archive x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadOnlineArchiveQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37644,9 +37647,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation: delete: description: Ends a cluster outage simulation. @@ -37689,7 +37689,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api endOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37702,9 +37705,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - - label: Atlas CLI - lang: cURL - source: atlas api endOutageSimulation --help get: description: Returns one outage simulation for one cluster. externalDocs: @@ -37746,7 +37746,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37759,9 +37762,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Starts a cluster outage simulation. externalDocs: @@ -37808,7 +37808,10 @@ paths: tags: - Cluster Outage Simulation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api startOutageSimulation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37825,9 +37828,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api startOutageSimulation --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs: get: description: 'Returns the advanced configuration details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. Advanced configuration details include the read/write concern, index and oplog limits, and other database settings. This feature isn''t available for `M0` free clusters, `M2` and `M5` shared-tier clusters, or serverless clusters. To use this resource, the requesting API Key must have the Project Read Only role. Deprecated versions: v2-{2023-01-01}' @@ -37868,7 +37868,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37881,9 +37884,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: 'Updates the advanced configuration details for one cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. Advanced configuration details include the read/write concern, index and oplog limits, and other database settings. To use this resource, the requesting API Key must have the Project Cluster Manager role. This feature isn''t available for `M0` free clusters, `M2` and `M5` shared-tier clusters, or serverless clusters. Deprecated versions: v2-{2023-01-01}' externalDocs: @@ -37933,7 +37933,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateClusterAdvancedConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -37950,9 +37953,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries: post: description: 'Starts a failover test for the specified cluster in the specified project. Clusters contain a group of hosts that maintain the same data set. A failover test checks how MongoDB Cloud handles the failure of the cluster''s primary node. During the test, MongoDB Cloud shuts down the primary node and elects a new primary. To use this resource, the requesting API Key must have the Project Cluster Manager role. Deprecated versions: v2-{2023-01-01}' @@ -37986,7 +37986,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api testFailover --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38003,9 +38006,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api testFailover --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs: get: deprecated: true @@ -38058,7 +38058,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacyBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38071,9 +38074,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: deprecated: true description: Restores one legacy backup for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). This endpoint doesn't support creating checkpoint restore jobs for sharded clusters, or creating restore jobs for queryable backup snapshots. If you create an automated restore job by specifying `delivery.methodName` of `AUTOMATED_RESTORE` in your request body, MongoDB Cloud removes all existing data on the target cluster prior to the restore. @@ -38118,7 +38118,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38135,9 +38138,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLegacyBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}: get: deprecated: true @@ -38188,7 +38188,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacyBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38201,9 +38204,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: delete: description: Deletes the Search Nodes for the specified cluster. @@ -38243,7 +38243,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38256,9 +38259,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: 'Return the Search Nodes for the specified cluster. Deprecated versions: v2-{2023-01-01}' operationId: getAtlasSearchDeployment @@ -38295,7 +38295,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38308,9 +38311,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: 'Updates the Search Nodes for the specified cluster. Deprecated versions: v2-{2023-01-01}' operationId: updateAtlasSearchDeployment @@ -38356,7 +38356,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38373,9 +38376,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchDeployment --help post: description: Creates Search Nodes for the specified cluster. operationId: createAtlasSearchDeployment @@ -38421,7 +38421,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchDeployment --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38438,9 +38441,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchDeployment --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes: get: description: Returns all Atlas Search indexes on the specified cluster. Atlas Search indexes contain the indexed fields and the analyzers used to create the indexes. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -38489,7 +38489,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexesCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38502,9 +38505,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Creates one Atlas Search index on the specified collection. Atlas Search indexes define the fields on which to create the index and the analyzers to use when creating the index. Only clusters running MongoDB v4.2 or later can use Atlas Search. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -38553,7 +38553,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38570,9 +38573,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createAtlasSearchIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}: get: description: Returns all Atlas Search indexes on the specified collection. Atlas Search indexes contain the indexed fields and the analyzers used to create the indexes. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -38633,7 +38633,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasSearchIndexes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38646,9 +38649,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}: delete: description: Removes one Atlas Search index that you identified with its database, collection, and name. To use this resource, the requesting API key must have the Project Data Access Admin role. This deletion is eventually consistent. @@ -38707,7 +38707,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndexByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38720,9 +38723,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns one Atlas Search index in the specified project. You identify this index using its database, collection and name. Atlas Search index contains the indexed fields and the analyzers used to create the index. To use this resource, the requesting API Key must have the Project Data Access Read Write role. externalDocs: @@ -38780,7 +38780,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndexByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38793,9 +38796,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates one Atlas Search index that you identified with its database, collection name, and index name. Atlas Search indexes define the fields on which to create the index and the analyzers to use when creating the index. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -38862,7 +38862,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndexByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38879,9 +38882,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndexByName --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}: delete: description: Removes one Atlas Search index that you identified with its unique ID. To use this resource, the requesting API key must have the Project Data Access Admin role. This deletion is eventually consistent. @@ -38931,7 +38931,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -38944,9 +38947,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns one Atlas Search index in the specified project. You identify this index using its unique ID. Atlas Search index contains the indexed fields and the analyzers used to create the index. To use this resource, the requesting API Key must have the Project Data Access Read Write role. externalDocs: @@ -39001,7 +39001,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39014,9 +39017,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates one Atlas Search index that you identified with its unique ID. Atlas Search indexes define the fields on which to create the index and the analyzers to use when creating the index. To use this resource, the requesting API Key must have the Project Data Access Admin role. externalDocs: @@ -39074,7 +39074,10 @@ paths: tags: - Atlas Search x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateAtlasSearchIndex --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39091,9 +39094,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateAtlasSearchIndex --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule: get: deprecated: true @@ -39133,7 +39133,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39146,9 +39149,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: deprecated: true description: |- @@ -39194,7 +39194,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotSchedule --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39211,9 +39214,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotSchedule --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots: get: deprecated: true @@ -39263,7 +39263,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listLegacySnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39276,9 +39279,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: delete: deprecated: true @@ -39326,7 +39326,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39339,9 +39342,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: deprecated: true description: Returns one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -39386,7 +39386,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLegacySnapshot --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39399,9 +39402,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: deprecated: true description: Changes the expiration date for one legacy backup snapshot for one cluster in the specified project. To use this resource, the requesting API Key must have the Project Owner role. Effective 23 March 2020, all new clusters can use only Cloud Backups. When you upgrade to 4.2, your backup system upgrades to cloud backup if it is currently set to legacy backup. After this upgrade, all your existing legacy backup snapshots remain available. They expire over time in accordance with your retention policy. Your backup policy resets to the default schedule. If you had a custom backup policy in place with legacy backups, you must re-create it with the procedure outlined in the [Cloud Backup documentation](https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/#std-label-cloud-provider-backup-schedule). @@ -39453,7 +39453,10 @@ paths: tags: - Legacy Backup x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateLegacySnapshotRetention --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39470,9 +39473,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateLegacySnapshotRetention --help /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status: get: description: Returns the status of all changes that you made to the specified cluster in the specified project. Use this resource to check the progress MongoDB Cloud has made in processing your changes. The response does not include the deployment of new dedicated clusters. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39508,7 +39508,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getClusterStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39521,9 +39524,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion: post: description: Pins the FCV to the current MongoDB version. @@ -39572,7 +39572,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pinFeatureCompatibilityVersion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39587,11 +39590,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ - -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pinFeatureCompatibilityVersion --help + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion: post: description: Unpins the current fixed Feature Compatibility Version. This feature is not available for clusters on rapid release. @@ -39635,7 +39635,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api unpinFeatureCompatibilityVersion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39652,9 +39655,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api unpinFeatureCompatibilityVersion --help /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: get: description: 'Returns a compressed (.gz) log file that contains a range of log messages for the specified host for the specified project. MongoDB updates process and audit logs from the cluster backend infrastructure every five minutes and contain log data from the previous five minutes. If you poll the API for log files, we recommend polling every five minutes. For example, if the logs are updated at 4:00 UTC and then you poll the API, the API returns log data from the interval between 3:55 UTC and 4:00 UTC. This feature isn''t available for `M0` free clusters, `M2`, `M5`, or serverless clusters. To use this resource, the requesting API Key must have the Project Data Access Read Only or higher role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip". Deprecated versions: v2-{2023-01-01}' @@ -39725,7 +39725,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39738,9 +39741,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/provider/regions: get: description: Returns the list of regions available for the specified cloud provider at the specified tier. To use this resource, the requesting API Key must have the Project Read Only role. @@ -39782,7 +39782,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCloudProviderRegions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39795,9 +39798,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: post: description: Upgrades a shared-tier cluster in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. Each project supports up to 25 clusters. @@ -39839,7 +39839,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedCluster --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39856,9 +39859,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedCluster --help /api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless: post: description: Upgrades a shared-tier cluster to a serverless instance in the specified project. To use this resource, the requesting API key must have the Project Cluster Manager role. @@ -39900,7 +39900,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api upgradeSharedClusterToServerless --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39917,9 +39920,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api upgradeSharedClusterToServerless --help /api/atlas/v2/groups/{groupId}/collStats/metrics: get: description: Returns all available Coll Stats Latency metric names and their respective units for the specified project at the time of request. @@ -39949,7 +39949,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -39962,9 +39965,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/containers: get: description: Returns details about all network peering containers in the specified project for the specified cloud provider. If you do not specify the cloud provider, MongoDB Cloud returns details about all network peering containers in the project for Amazon Web Services (AWS). To use this resource, the requesting API Key must have the Project Read Only role. @@ -40007,7 +40007,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainerByCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40020,9 +40023,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help post: description: Creates one new network peering container in the specified project. MongoDB Cloud can deploy Network Peering connections in a network peering container. GCP can have one container per project. AWS and Azure can have one container per cloud provider region. To use this resource, the requesting API Key must have the Project Owner role. operationId: createPeeringContainer @@ -40063,7 +40063,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40080,9 +40083,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/{containerId}: delete: description: Removes one network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -40125,7 +40125,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40138,9 +40141,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringContainer --help get: description: Returns details about one network peering container in one specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringContainer @@ -40176,7 +40176,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40189,9 +40192,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates the network details and labels of one specified network peering container in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringContainer @@ -40242,7 +40242,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringContainer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40259,9 +40262,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringContainer --help /api/atlas/v2/groups/{groupId}/containers/all: get: description: Returns details about all network peering containers in the specified project. Network peering containers contain network peering connections. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40291,7 +40291,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringContainers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40304,9 +40307,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/customDBRoles/roles: get: description: Returns all custom roles for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40335,7 +40335,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listCustomDatabaseRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40348,9 +40351,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Creates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createCustomDatabaseRole @@ -40391,7 +40391,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40408,9 +40411,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}: delete: description: Removes one custom role from the specified project. You can't remove a custom role that would leave one or more child roles with no parent roles or actions. You also can't remove a custom role that would leave one or more database users without roles. To use this resource, the requesting API Key must have the Project Atlas Admin role. @@ -40447,7 +40447,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40460,9 +40463,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteCustomDatabaseRole --help get: description: Returns one custom role for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getCustomDatabaseRole @@ -40496,7 +40496,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40509,9 +40512,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates one custom role in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateCustomDatabaseRole @@ -40558,7 +40558,10 @@ paths: tags: - Custom Database Roles x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateCustomDatabaseRole --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40575,9 +40578,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateCustomDatabaseRole --help /api/atlas/v2/groups/{groupId}/dataFederation: get: description: Returns the details of all federated database instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only or higher role. @@ -40615,7 +40615,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listFederatedDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40628,9 +40631,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listFederatedDatabases --help post: description: Creates one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createFederatedDatabase @@ -40669,7 +40669,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40686,9 +40689,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}: delete: description: Removes one federated database instance from the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. @@ -40721,7 +40721,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40734,9 +40737,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteFederatedDatabase --help get: description: Returns the details of one federated database instance within the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getFederatedDatabase @@ -40771,7 +40771,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40784,9 +40787,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates the details of one federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or higher role. operationId: updateFederatedDatabase @@ -40833,7 +40833,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateFederatedDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40850,9 +40853,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateFederatedDatabase --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits: get: description: Returns query limits for a federated databases instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -40889,7 +40889,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40902,9 +40905,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: delete: description: Deletes one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -40955,7 +40955,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOneDataFederationInstanceQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -40968,9 +40971,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns the details of one query limit for the specified federated database instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: returnFederatedDatabaseQueryLimit @@ -41021,7 +41021,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnFederatedDatabaseQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41034,9 +41037,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Creates or updates one query limit for one federated database instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: createOneDataFederationQueryLimit @@ -41097,7 +41097,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOneDataFederationQueryLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41114,9 +41117,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOneDataFederationQueryLimit --help /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz: get: description: 'Downloads the query logs for the specified federated database instance. To use this resource, the requesting API Key must have the Project Owner or Project Data Access Read Write roles. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -41173,7 +41173,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadFederatedDatabaseQueryLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41186,9 +41189,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/databaseUsers: get: description: Returns all database users that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41218,7 +41218,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41231,9 +41234,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listDatabaseUsers --help post: description: Creates one database user in the specified project. This MongoDB Cloud supports a maximum of 100 database users per project. If you require more than 100 database users on a project, contact [Support](https://cloud.mongodb.com/support). To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: createDatabaseUser @@ -41365,7 +41365,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41382,9 +41385,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}: delete: description: Removes one database user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -41441,7 +41441,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41454,9 +41457,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDatabaseUser --help get: description: Returns one database user that belong to the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getDatabaseUser @@ -41510,7 +41510,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41523,9 +41526,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates one database user that belongs to the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Charts Admin roles. operationId: updateDatabaseUser @@ -41592,7 +41592,10 @@ paths: tags: - Database Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateDatabaseUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41609,9 +41612,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateDatabaseUser --help /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs: get: description: Returns all unexpired X.509 certificates for the specified MongoDB user. This MongoDB user belongs to one project. Atlas manages these certificates and the MongoDB user. To use this resource, the requesting API Key must have the Project Read Only role. @@ -41649,7 +41649,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabaseUserCertificates --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41662,9 +41665,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: |- Generates one X.509 certificate for the specified MongoDB user. Atlas manages the certificate and MongoDB user that belong to one project. To use this resource, the requesting API Key must have the Project Owner role. @@ -41720,7 +41720,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDatabaseUserCertificate --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41737,9 +41740,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDatabaseUserCertificate --help /api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}: get: description: Returns the access logs of one cluster identified by the cluster's name. Access logs contain a list of authentication requests made against your cluster. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -41812,7 +41812,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByClusterName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41825,9 +41828,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: get: description: Returns the access logs of one cluster identified by the cluster's hostname. Access logs contain a list of authentication requests made against your clusters. You can't use this feature on tenant-tier clusters (M0, M2, M5). To use this resource, the requesting API Key must have the Project Monitoring Admin role. @@ -41897,7 +41897,10 @@ paths: tags: - Access Tracking x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAccessLogsByHostname --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41910,9 +41913,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/encryptionAtRest: get: description: |- @@ -41942,7 +41942,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -41955,9 +41958,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getEncryptionAtRest --help patch: description: |- Updates the configuration for encryption at rest using the keys you manage through your cloud provider. MongoDB Cloud encrypts all storage even if you don't use your own key management. This resource requires the requesting API Key to have the Project Owner role. This feature isn't available for `M0` free clusters, `M2`, `M5`, or serverless clusters. @@ -42008,7 +42008,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateEncryptionAtRest --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42025,9 +42028,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateEncryptionAtRest --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints: get: description: Returns the private endpoints of the specified cloud provider for encryption at rest using customer key management. @@ -42062,7 +42062,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42075,9 +42078,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Creates a private endpoint in the specified region for encryption at rest using customer key management. operationId: createEncryptionAtRestPrivateEndpoint @@ -42118,7 +42118,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42135,9 +42138,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}: delete: description: Deletes one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. @@ -42188,7 +42188,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42201,9 +42204,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns one private endpoint, identified by its ID, for encryption at rest using Customer Key Management. operationId: getEncryptionAtRestPrivateEndpoint @@ -42246,7 +42246,10 @@ paths: tags: - Encryption at Rest using Customer Key Management x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getEncryptionAtRestPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42257,11 +42260,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -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 + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" /api/atlas/v2/groups/{groupId}/events: get: description: |- @@ -42345,7 +42345,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42358,9 +42361,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectEvents --help /api/atlas/v2/groups/{groupId}/events/{eventId}: get: description: |- @@ -42407,7 +42407,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42420,9 +42423,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: get: description: Returns all Atlas Search metric types available for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -42451,7 +42451,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listMetricTypes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42464,9 +42467,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: get: description: Returns the Atlas Search metrics data series within the provided time range for one namespace and index name on the specified process. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -42525,7 +42525,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42538,9 +42541,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: get: description: Returns the Atlas Search index metrics within the specified time range for one namespace in the specified process. @@ -42598,7 +42598,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listIndexMetrics --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42611,9 +42614,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: get: description: Returns the Atlas Search hardware and status data series within the provided time range for one process in the specified project. You must have the Project Read Only or higher role to view the Atlas Search metric types. @@ -42670,7 +42670,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42683,9 +42686,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/integrations: get: description: Returns the settings that permit integrations with all configured third-party services. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -42719,7 +42719,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listThirdPartyIntegrations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42732,9 +42735,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listThirdPartyIntegrations --help /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: delete: description: Removes the settings that permit configuring one third-party service integration. These settings apply to all databases managed in one MongoDB Cloud project. If you delete an integration from a project, you remove that integration configuration only for that project. This action doesn't affect any other project or organization's configured `{INTEGRATION-TYPE}` integrations. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. @@ -42783,7 +42783,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42796,9 +42799,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteThirdPartyIntegration --help get: description: Returns the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: getThirdPartyIntegration @@ -42846,7 +42846,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42859,9 +42862,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Adds the settings for configuring one third-party service integration. These settings apply to all databases managed in the specified MongoDB Cloud project. Each project can have only one configuration per `{INTEGRATION-TYPE}`. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: createThirdPartyIntegration @@ -42921,7 +42921,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -42938,9 +42941,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createThirdPartyIntegration --help put: description: Updates the settings for configuring integration with one third-party service. These settings apply to all databases managed in one MongoDB Cloud project. To use this resource, the requesting API Key must have the Organization Owner or Project Owner role. operationId: updateThirdPartyIntegration @@ -42998,7 +42998,10 @@ paths: tags: - Third-Party Integrations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateThirdPartyIntegration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43015,9 +43018,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateThirdPartyIntegration --help /api/atlas/v2/groups/{groupId}/invites: get: deprecated: true @@ -43053,7 +43053,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43066,9 +43069,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectInvitations --help x-sunset: "2024-10-04" patch: deprecated: true @@ -43107,7 +43107,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43124,9 +43127,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitation --help x-sunset: "2024-10-04" post: deprecated: true @@ -43161,7 +43161,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43178,9 +43181,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectInvitation --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/invites/{invitationId}: delete: @@ -43217,7 +43217,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43230,9 +43233,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectInvitation --help x-sunset: "2024-10-04" get: deprecated: true @@ -43271,7 +43271,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43284,9 +43287,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 x-sunset: "2024-10-04" patch: deprecated: true @@ -43333,7 +43333,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43350,9 +43353,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectInvitationById --help x-sunset: "2024-10-04" /api/atlas/v2/groups/{groupId}/ipAddresses: get: @@ -43382,7 +43382,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43395,9 +43398,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllIPAddresses --help /api/atlas/v2/groups/{groupId}/limits: get: description: Returns all the limits for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -43432,7 +43432,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectLimits --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43445,9 +43448,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectLimits --help /api/atlas/v2/groups/{groupId}/limits/{limitName}: delete: description: Removes the specified project limit. Depending on the limit, Atlas either resets the limit to its default value or removes the limit entirely. To use this resource, the requesting API Key must have the Project Owner role. @@ -43514,7 +43514,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43527,9 +43530,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectLimit --help get: description: Returns the specified limit for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getProjectLimit @@ -43597,7 +43597,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43610,9 +43613,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: |- Sets the specified project limit. To use this resource, the requesting API Key must have the Project Owner role. @@ -43690,7 +43690,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setProjectLimit --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43707,9 +43710,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setProjectLimit --help /api/atlas/v2/groups/{groupId}/liveMigrations: post: description: |- @@ -43757,7 +43757,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43774,9 +43777,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}: get: description: Return details of one cluster migration job. Each push live migration job uses one migration host. Your API Key must have the Organization Member role to successfully call this resource. @@ -43808,7 +43808,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43821,9 +43824,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: put: description: Cut over the migrated cluster to MongoDB Atlas. Confirm when the cut over completes. When the cut over completes, MongoDB Atlas completes the live migration process and stops synchronizing with the source cluster. Your API Key must have the Organization Owner role to successfully call this resource. @@ -43855,7 +43855,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api cutoverMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43872,9 +43875,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api cutoverMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/validate: post: description: 'Verifies whether the provided credentials, available disk space, MongoDB versions, and so on meet the requirements of the migration request. If the check passes, the migration can proceed. Your API Key must have the Organization Owner role to successfully call this resource. Deprecated versions: v2-{2023-01-01}' @@ -43915,7 +43915,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api validateMigration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43932,9 +43935,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api validateMigration --help /api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}: get: description: Return the status of one migration validation job. Your API Key must have the Organization Owner role to successfully call this resource. @@ -43976,7 +43976,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getValidationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -43989,9 +43992,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/maintenanceWindow: delete: description: Resets the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -44017,7 +44017,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resetMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44030,9 +44033,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - - label: Atlas CLI - lang: cURL - source: atlas api resetMaintenanceWindow --help get: description: Returns the maintenance window for the specified project. MongoDB Cloud starts those maintenance activities when needed. You can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: getMaintenanceWindow @@ -44058,7 +44058,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44071,9 +44074,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getMaintenanceWindow --help patch: description: Updates the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateMaintenanceWindow @@ -44107,7 +44107,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44124,9 +44127,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer: post: description: Toggles automatic deferral of the maintenance window for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -44152,7 +44152,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleMaintenanceAutoDefer --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44169,9 +44172,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help /api/atlas/v2/groups/{groupId}/maintenanceWindow/defer: post: description: Defers the maintenance window for the specified project. Urgent maintenance activities such as security patches can't wait for your chosen window. MongoDB Cloud starts those maintenance activities when needed. After you schedule maintenance for your cluster, you can't change your maintenance window until the current maintenance efforts complete. The maintenance procedure that MongoDB Cloud performs requires at least one replica set election during the maintenance window per replica set. Maintenance always begins as close to the scheduled hour as possible, but in-progress cluster updates or unexpected system issues could delay the start time. To use this resource, the requesting API Key must have the Project Owner role. @@ -44197,7 +44197,10 @@ paths: tags: - Maintenance Windows x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deferMaintenanceWindow --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44214,9 +44217,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api deferMaintenanceWindow --help /api/atlas/v2/groups/{groupId}/managedSlowMs: get: description: Get whether the Managed Slow MS feature is enabled. @@ -44243,7 +44243,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getManagedSlowMs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44256,9 +44259,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getManagedSlowMs --help /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: delete: description: Disables the slow operation threshold that MongoDB Cloud calculated for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -44285,7 +44285,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44298,9 +44301,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - - label: Atlas CLI - lang: cURL - source: atlas api disableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: post: description: Enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. To use this resource, the requesting API Key must have the Project Owner role. @@ -44327,7 +44327,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api enableSlowOperationThresholding --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44344,9 +44347,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api enableSlowOperationThresholding --help /api/atlas/v2/groups/{groupId}/mongoDBVersions: get: description: Returns the MongoDB Long Term Support Major Versions available to new clusters in this project. @@ -44414,7 +44414,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectLTSVersions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44427,9 +44430,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectLTSVersions --help /api/atlas/v2/groups/{groupId}/peers: get: description: Returns details about all network peering connections in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44471,7 +44471,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPeeringConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44484,9 +44487,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPeeringConnections --help post: description: Creates one new network peering connection in the specified project. Network peering allows multiple cloud-hosted applications to securely connect to the same project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations and prerequisites, see the Network Peering Documentation. externalDocs: @@ -44528,7 +44528,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44545,9 +44548,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPeeringConnection --help /api/atlas/v2/groups/{groupId}/peers/{peerId}: delete: description: Removes one network peering connection in the specified project. If you Removes the last network peering connection associated with a project, MongoDB Cloud also removes any AWS security groups from the project IP access list. To use this resource, the requesting API Key must have the Project Owner role. @@ -44585,7 +44585,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44598,9 +44601,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePeeringConnection --help get: description: Returns details about one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPeeringConnection @@ -44637,7 +44637,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44650,9 +44653,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates one specified network peering connection in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updatePeeringConnection @@ -44700,7 +44700,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePeeringConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44717,9 +44720,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePeeringConnection --help /api/atlas/v2/groups/{groupId}/pipelines: get: description: Returns a list of Data Lake Pipelines. To use this resource, the requesting API Key must have the Project Read Only role. @@ -44749,7 +44749,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelines --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44760,11 +44763,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listPipelines --help + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" post: description: Creates one Data Lake Pipeline. operationId: createPipeline @@ -44800,7 +44800,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44817,9 +44820,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}: delete: description: Removes one Data Lake Pipeline. @@ -44856,7 +44856,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44869,9 +44872,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - - label: Atlas CLI - lang: cURL - source: atlas api deletePipeline --help get: description: Returns the details of one Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipeline @@ -44908,7 +44908,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44921,9 +44924,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates one Data Lake Pipeline. operationId: updatePipeline @@ -44970,7 +44970,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -44987,9 +44990,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules: get: description: Returns a list of backup schedule policy items that you can use as a Data Lake Pipeline source. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45029,7 +45029,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSchedules --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45042,9 +45045,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: get: description: Returns a list of backup snapshots that you can use to trigger an on demand pipeline run. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45092,7 +45092,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineSnapshots --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45105,9 +45108,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: post: description: Pauses ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45145,7 +45145,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api pausePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45162,9 +45165,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api pausePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume: post: description: Resumes ingestion for a Data Lake Pipeline within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45202,7 +45202,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api resumePipeline --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45219,9 +45222,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api resumePipeline --help /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs: get: description: Returns a list of past Data Lake Pipeline runs. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45269,7 +45269,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPipelineRuns --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45282,9 +45285,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: delete: description: Deletes dataset that Atlas generated during the specified pipeline run. @@ -45332,7 +45332,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePipelineRunDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45345,9 +45348,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns the details of one Data Lake Pipeline run within the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPipelineRun @@ -45394,7 +45394,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPipelineRun --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45407,9 +45410,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: post: description: Triggers a Data Lake Pipeline ingestion of a specified snapshot. @@ -45454,7 +45454,10 @@ paths: tags: - Data Lake Pipelines x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api triggerSnapshotIngestion --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45471,9 +45474,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api triggerSnapshotIngestion --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService: get: description: Returns the name, interfaces, and state of all private endpoint services for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45513,7 +45513,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPrivateEndpointServices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45526,9 +45529,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: delete: description: Removes one private endpoint service from the specified project. This cloud service provider manages the private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Owner role. @@ -45575,7 +45575,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45588,9 +45591,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns the name, interfaces, and state of the specified private endpoint service from one project. The cloud service provider hosted this private endpoint service that belongs to the project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpointService @@ -45638,7 +45638,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45651,9 +45654,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: post: description: Creates one private endpoint for the specified cloud service provider. This cloud service provider manages the private endpoint service, which in turn manages the private endpoints for the project. To use this resource, the requesting API Key must have the Project Owner role. To learn more about considerations, limitations, and prerequisites, see the MongoDB documentation for setting up a private endpoint. @@ -45713,7 +45713,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45730,9 +45733,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}: delete: description: Removes one private endpoint from the specified project and private endpoint service, as managed by the specified cloud service provider. When the last private endpoint is removed from a given private endpoint service, that private endpoint service is also removed. To use this resource, the requesting API Key must have the Project Owner role. @@ -45786,7 +45786,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45799,9 +45802,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns the connection state of the specified private endpoint. The private endpoint service manages this private endpoint which belongs to one project hosted from one cloud service provider. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getPrivateEndpoint @@ -45856,7 +45856,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45869,9 +45872,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: post: description: Creates one private endpoint service for the specified cloud service provider. This cloud service provider manages the private endpoint service for the project. When you create a private endpoint service, MongoDB Cloud creates a network container in the project for the cloud provider for which you create the private endpoint service if one doesn't already exist. To learn more about private endpoint terminology in MongoDB Cloud, see Private Endpoint Concepts. To use this resource, the requesting API Key must have the Project Owner role. @@ -45908,7 +45908,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPrivateEndpointService --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45925,9 +45928,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPrivateEndpointService --help /api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode: get: description: Checks whether each region in the specified cloud service provider can create multiple private endpoints per region. The cloud service provider manages the private endpoint for the project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -45956,7 +45956,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -45969,9 +45972,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Enables or disables the ability to create multiple private endpoints per region in all cloud service providers in one project. The cloud service provider manages the private endpoints for the project. Connection strings to existing multi-region and global sharded clusters change when you enable this setting. You must update your applications to use the new connection strings. This might cause downtime. To use this resource, the requesting API Key must have the Project Owner role and all clusters in the deployment must be sharded clusters. Once enabled, you cannot create replica sets. operationId: toggleRegionalizedPrivateEndpointSetting @@ -46006,7 +46006,10 @@ paths: tags: - Private Endpoint Services x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api toggleRegionalizedPrivateEndpointSetting --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46023,9 +46026,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint: get: description: Returns all private endpoints for one serverless instance. You must have at least the Project Read Only role for the project to successfully call this resource. @@ -46063,7 +46063,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46076,9 +46079,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: |- Creates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -46126,7 +46126,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46143,9 +46146,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}: delete: description: Remove one private endpoint from one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. @@ -46190,7 +46190,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46203,9 +46206,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Return one private endpoint for one serverless instance. Identify this endpoint using its unique ID. You must have at least the Project Read Only role for the project to successfully call this resource. operationId: getServerlessPrivateEndpoint @@ -46249,7 +46249,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46262,9 +46265,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates one private endpoint for one serverless instance. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessPrivateEndpoint @@ -46315,7 +46315,10 @@ paths: tags: - Serverless Private Endpoints x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46332,9 +46335,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateIpMode: get: deprecated: true @@ -46365,7 +46365,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46378,9 +46381,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help patch: deprecated: true description: Disables Connect via Peering Only mode for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46419,7 +46419,10 @@ paths: tags: - Network Peering x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disablePeering --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46436,9 +46439,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api disablePeering --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds: get: description: Returns all private endpoints for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. @@ -46472,7 +46472,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDataFederationPrivateEndpoints --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46485,9 +46488,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: |- Adds one private endpoint for Federated Database Instances and Online Archives to the specified projects. If the endpoint ID already exists and the associated comment is unchanged, Atlas Data Federation makes no change to the endpoint ID list. If the endpoint ID already exists and the associated comment is changed, Atlas Data Federation updates the comment value only in the endpoint ID list. If the endpoint ID doesn't exist, Atlas Data Federation appends the new endpoint to the list of endpoints in the endpoint ID list. Each region has an associated service name for the various endpoints in each region. @@ -46541,7 +46541,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46558,9 +46561,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}: delete: description: Removes one private endpoint for Federated Database Instances and Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -46598,7 +46598,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46611,9 +46614,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help get: description: Returns the specified private endpoint for Federated Database Instances or Online Archives in the specified project. To use this resource, the requesting API Key must have the Project Read Only or Project Charts Admin roles. operationId: getDataFederationPrivateEndpoint @@ -46652,7 +46652,10 @@ paths: tags: - Data Federation x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDataFederationPrivateEndpoint --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46665,9 +46668,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes: get: description: Returns details of all processes for the specified project. A MongoDB process can be either a `mongod` or `mongos`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46697,7 +46697,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listAtlasProcesses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46710,9 +46713,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listAtlasProcesses --help /api/atlas/v2/groups/{groupId}/processes/{processId}: get: description: Returns the processes for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46747,7 +46747,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getAtlasProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46760,9 +46763,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements: get: description: Get a list of the Coll Stats Latency process-level measurements for the given namespace @@ -46832,7 +46832,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46845,9 +46848,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces: get: description: Return the subset of namespaces from the given process ranked by highest total execution time (descending) within the given time window. @@ -46877,7 +46877,10 @@ paths: tags: - Collection Level Metrics x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getCollStatsLatencyNamespacesForHost --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46890,9 +46893,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: get: description: Returns the list of databases running on the specified host for the specified project. `M0` free clusters, `M2`, `M5`, and serverless clusters have some [operational limits](https://www.mongodb.com/docs/atlas/reference/free-shared-limitations/#operational-limitations). The MongoDB Cloud process must be a `mongod`. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46930,7 +46930,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDatabases --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46943,9 +46946,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: get: description: Returns one database running on the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -46986,7 +46986,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabase --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -46999,9 +47002,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: get: description: Returns the measurements of one database for the specified host for the specified project. Returns the database's on-disk storage space based on the MongoDB `dbStats` command output. To calculate some metric series, Atlas takes the rate between every two adjacent points. For these metric series, the first data point has a null value because Atlas can't calculate a rate for the first data point given the query time range. Atlas retrieves database metrics every 20 minutes but reduces frequency when necessary to optimize database performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47068,7 +47068,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDatabaseMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47081,9 +47084,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: get: description: Returns the list of disks or partitions for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47121,7 +47121,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskPartitions --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47134,9 +47137,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: get: description: Returns measurement details for one disk or partition for the specified host for the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47176,7 +47176,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47189,9 +47192,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: get: description: |- @@ -47274,7 +47274,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getDiskMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47285,11 +47288,8 @@ paths: source: |- curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ - --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -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 + --header "Accept: application/vnd.atlas.2025-01-01+json" \ + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: get: description: |- @@ -47483,7 +47483,10 @@ paths: tags: - Monitoring and Logs x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getHostMeasurements --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47496,9 +47499,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: get: description: Returns up to 20 namespaces for collections experiencing slow queries on the specified host. If you specify a secondary member of a replica set that hasn't received any database read operations, the endpoint doesn't return any namespaces. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47553,7 +47553,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueryNamespaces --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47566,9 +47569,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: get: description: Returns log lines for slow queries that the Performance Advisor and Query Profiler identified. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. MongoDB Cloud bases the threshold for slow queries on the average time of operations on your cluster. This enables workload-relevant recommendations. To use this resource, the requesting API Key must have the Project Data Access Read Write role. @@ -47640,7 +47640,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSlowQueries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47653,9 +47656,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: get: description: Returns the indexes that the Performance Advisor suggests. The Performance Advisor monitors queries that MongoDB considers slow and suggests new indexes to improve query performance. To use this resource, the requesting API Key must have the Project Read Only role. @@ -47734,7 +47734,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSuggestedIndexes --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47747,9 +47750,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/pushBasedLogExport: delete: description: Disables the push-based log export feature by resetting the project level settings to its default configuration. @@ -47780,7 +47780,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deletePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47793,9 +47796,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - - label: Atlas CLI - lang: cURL - source: atlas api deletePushBasedLogConfiguration --help get: description: Fetches the current project level settings for the push-based log export feature. operationId: getPushBasedLogConfiguration @@ -47825,7 +47825,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47838,9 +47841,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getPushBasedLogConfiguration --help patch: description: Updates the project level settings for the push-based log export feature. operationId: updatePushBasedLogConfiguration @@ -47878,7 +47878,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updatePushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47895,9 +47898,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updatePushBasedLogConfiguration --help post: description: Configures the project level settings for the push-based log export feature. operationId: createPushBasedLogConfiguration @@ -47935,7 +47935,10 @@ paths: tags: - Push-Based Log Export x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createPushBasedLogConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -47952,9 +47955,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createPushBasedLogConfiguration --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}: post: description: Requests loading the MongoDB sample dataset into the specified cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -47993,7 +47993,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api loadSampleDataset --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48010,9 +48013,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api loadSampleDataset --help /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}: get: description: Checks the progress of loading the sample dataset into one cluster. To use this resource, the requesting API Key must have the Project Owner role. @@ -48047,7 +48047,10 @@ paths: tags: - Clusters x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getSampleDatasetLoadStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48060,9 +48063,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless: get: description: Returns details for all serverless instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -48092,7 +48092,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48105,9 +48108,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServerlessInstances --help post: description: Creates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessInstance @@ -48144,7 +48144,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48161,9 +48164,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessInstance --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs: get: description: Returns all restore jobs for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -48204,7 +48204,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackupRestoreJobs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48217,9 +48220,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Restores one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createServerlessBackupRestoreJob @@ -48267,7 +48267,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48284,9 +48287,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServerlessBackupRestoreJob --help /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}: get: description: Returns one restore job for one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -48333,7 +48333,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackupRestoreJob --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48346,9 +48349,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: get: description: Returns all snapshots of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -48389,7 +48389,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServerlessBackups --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48402,9 +48405,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: get: description: Returns one snapshot of one serverless instance from the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -48451,7 +48451,10 @@ paths: tags: - Cloud Backups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessBackup --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48464,9 +48467,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: get: description: Get whether the Serverless Auto Indexing feature is enabled. @@ -48502,7 +48502,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48515,9 +48518,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Set whether the Serverless Auto Indexing feature is enabled. operationId: setServerlessAutoIndexing @@ -48557,7 +48557,10 @@ paths: tags: - Performance Advisor x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api setServerlessAutoIndexing --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48574,9 +48577,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api setServerlessAutoIndexing --help /api/atlas/v2/groups/{groupId}/serverless/{name}: delete: description: Removes one serverless instance from the specified project. The serverless instance must have termination protection disabled in order to be deleted. To use this resource, the requesting API Key must have the Project Owner role. @@ -48616,7 +48616,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48629,9 +48632,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServerlessInstance --help get: description: Returns details for one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getServerlessInstance @@ -48670,7 +48670,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48683,9 +48686,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates one serverless instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateServerlessInstance @@ -48729,7 +48729,10 @@ paths: tags: - Serverless Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServerlessInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48746,9 +48749,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServerlessInstance --help /api/atlas/v2/groups/{groupId}/serviceAccounts: get: description: Returns list of Service Accounts for a project with service account details. @@ -48779,7 +48779,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectServiceAccounts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48792,9 +48795,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectServiceAccounts --help post: description: Creates and assigns the specified Service Account to the specified Project. operationId: createProjectServiceAccount @@ -48830,7 +48830,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48847,9 +48850,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createProjectServiceAccount --help /api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}: delete: description: Removes one Service Account from the specified project. @@ -48885,7 +48885,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48898,9 +48901,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteProjectServiceAccount --help get: description: Get project Service Account Details. operationId: getProjectServiceAccount @@ -48934,7 +48934,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -48947,9 +48950,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Update Service Account in Project. operationId: updateProjectServiceAccount @@ -48992,7 +48992,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49009,9 +49012,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectServiceAccount --help post: description: Assigns the specified organization Service Account to the specified project. operationId: addProjectServiceAccount @@ -49056,7 +49056,10 @@ paths: tags: - Groups x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addProjectServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49073,9 +49076,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addProjectServiceAccount --help /api/atlas/v2/groups/{groupId}/settings: get: description: Returns details about the specified project's settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -49106,7 +49106,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49119,9 +49122,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectSettings --help patch: description: Updates the settings of the specified project. You can update any of the options available. MongoDB cloud only updates the options provided in the request. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateProjectSettings @@ -49158,7 +49158,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49175,9 +49178,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectSettings --help /api/atlas/v2/groups/{groupId}/streams: get: description: Returns all stream instances for the specified project. @@ -49206,7 +49206,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49219,9 +49222,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listStreamInstances --help post: description: Creates one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: createStreamInstance @@ -49256,7 +49256,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49273,9 +49276,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}: delete: description: Delete one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. @@ -49312,7 +49312,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49325,9 +49328,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteStreamInstance --help get: description: Returns the details of one stream instance within the specified project. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. operationId: getStreamInstance @@ -49367,7 +49367,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49380,9 +49383,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Update one stream instance in the specified project. To use this resource, the requesting API Key must have the Project Data Access Admin role, Project Owner role or Project Stream Processing Owner role. operationId: updateStreamInstance @@ -49427,7 +49427,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49444,9 +49447,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamInstance --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs: get: description: 'Downloads the audit logs for the specified Atlas Streams Processing instance. By default, logs cover periods of 30 days. To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. The API does not support direct calls with the json response schema. You must request a gzip response schema using an accept header of the format: "Accept: application/vnd.atlas.YYYY-MM-DD+gzip".' @@ -49504,7 +49504,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadStreamTenantAuditLogs --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49517,9 +49520,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections: get: description: Returns all connections of the stream instance for the specified project.To use this resource, the requesting API Key must have the Project Data Access roles, Project Owner role or Project Stream Processing Owner role. @@ -49556,7 +49556,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamConnections --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49569,9 +49572,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Creates one connection for a stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner or Project Stream Processing Owner role. operationId: createStreamConnection @@ -49614,7 +49614,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49631,9 +49634,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamConnection --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}: delete: description: Delete one connection of the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49676,7 +49676,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49689,9 +49692,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns the details of one stream connection within the specified stream instance. To use this resource, the requesting API Key must have the Project Read Only role. operationId: getStreamConnection @@ -49730,7 +49730,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49743,9 +49746,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Update one connection for the specified stream instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. operationId: updateStreamConnection @@ -49796,7 +49796,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateStreamConnection --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49813,9 +49816,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateStreamConnection --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor: post: description: Create one Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49859,7 +49859,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49874,11 +49877,8 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ - -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ - -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createStreamProcessor --help + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" \ + -d '{ }' /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}: delete: description: Delete a Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -49919,7 +49919,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49932,9 +49935,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Get one Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. operationId: getStreamProcessor @@ -49976,7 +49976,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -49989,9 +49992,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start: post: description: Start a Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -50034,7 +50034,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api startStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50051,9 +50054,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api startStreamProcessor --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop: post: description: Stop a Stream Processor within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -50096,7 +50096,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api stopStreamProcessor --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50113,9 +50116,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api stopStreamProcessor --help /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors: get: description: Returns all Stream Processors within the specified stream instance. To use this resource, the requesting API Key must have the Project Owner role or Project Stream Processing Owner role. @@ -50155,7 +50155,10 @@ paths: tags: - Streams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listStreamProcessors --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50168,9 +50171,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/teams: get: description: Returns all teams to which the authenticated user has access in the project specified using its unique 24-hexadecimal digit identifier. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Read Only role. @@ -50206,7 +50206,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50219,9 +50222,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectTeams --help post: description: Adds one team to the specified project. All members of the team share the same project access. MongoDB Cloud limits the number of users to a maximum of 100 teams per project and a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -50265,7 +50265,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addAllTeamsToProject --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50282,9 +50285,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addAllTeamsToProject --help /api/atlas/v2/groups/{groupId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the project specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Project Owner role. @@ -50326,7 +50326,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50339,9 +50342,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectTeam --help patch: description: Updates the project roles assigned to the specified team. You can grant team roles for specific projects and grant project access roles to users in the team. All members of the team share the same project access. To use this resource, the requesting API Key must have the Project Owner role. externalDocs: @@ -50392,7 +50392,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateTeamRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50409,9 +50412,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateTeamRoles --help /api/atlas/v2/groups/{groupId}/userSecurity: get: description: Returns the current LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50438,7 +50438,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50451,9 +50454,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getLDAPConfiguration --help patch: description: |- Edits the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50491,7 +50491,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api saveLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50508,9 +50511,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api saveLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/customerX509: delete: description: |- @@ -50539,7 +50539,10 @@ paths: tags: - X.509 Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api disableCustomerManagedX509 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50552,9 +50555,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - - label: Atlas CLI - lang: cURL - source: atlas api disableCustomerManagedX509 --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: delete: description: Removes the current LDAP Distinguished Name mapping captured in the ``userToDNMapping`` document from the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50581,7 +50581,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50594,9 +50597,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: post: description: Verifies the LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50632,7 +50632,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api verifyLDAPConfiguration --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50649,9 +50652,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api verifyLDAPConfiguration --help /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}: get: description: Returns the status of one request to verify one LDAP configuration for the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50687,7 +50687,10 @@ paths: tags: - LDAP Configuration x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getLDAPConfigurationStatus --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50700,9 +50703,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/groups/{groupId}/users: get: description: Returns details about all users in the specified project. Users belong to an organization. To use this resource, the requesting API Key must have the Project Read Only role. @@ -50744,7 +50744,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listProjectUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50757,9 +50760,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listProjectUsers --help /api/atlas/v2/groups/{groupId}/users/{userId}: delete: description: Removes the specified user from the specified project. To use this resource, the requesting API Key must have the Project Owner role. @@ -50797,7 +50797,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeProjectUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50810,9 +50813,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeProjectUser --help /api/atlas/v2/groups/{groupId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified project. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified project. To use this resource, the requesting API Key must have the Group User Admin role. @@ -50859,7 +50859,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateProjectRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50876,9 +50879,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateProjectRoles --help /api/atlas/v2/groups/{groupId}/uss: get: description: Returns details for all USS instances in the specified project. To use this resource, the requesting API Key must have the Project Read Only role. @@ -50908,7 +50908,10 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listUSSInstances --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50921,9 +50924,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listUSSInstances --help post: description: Creates one USS instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: createUSSInstance @@ -50960,7 +50960,10 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createUSSInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -50977,9 +50980,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createUSSInstance --help /api/atlas/v2/groups/{groupId}/uss/{name}: delete: description: Removes one USS instance from the specified project. The USS instance must have termination protection disabled in order to be deleted. To use this resource, the requesting API Key must have the Project Owner role. @@ -51019,7 +51019,10 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteUSSInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51032,9 +51035,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteUSSInstance --help x-xgen-changelog: "2025-03-02": Changelog test entry. get: @@ -51075,7 +51075,10 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUSSInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51088,9 +51091,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates one USS instance in the specified project. To use this resource, the requesting API Key must have the Project Owner role. operationId: updateUSSInstance @@ -51134,7 +51134,10 @@ paths: tags: - USS Instances x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateUSSInstance --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51151,9 +51154,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateUSSInstance --help /api/atlas/v2/groups/{groupId}:migrate: post: description: Migrates a project from its current organization to another organization. All project users and their roles will be copied to the same project in the destination organization. You must include an organization API key with the Organization Owner role for the destination organization to verify access to the destination organization when you authenticate with Programmatic API Keys. Otherwise, the requesting user must have the Organization Owner role in both organizations. To use this resource, the requesting API Key must have the Organization Owner role. @@ -51186,7 +51186,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api migrateProjectToAnotherOrg --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51203,9 +51206,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api migrateProjectToAnotherOrg --help /api/atlas/v2/groups/byName/{groupName}: get: description: Returns details about the specified project. Projects group clusters into logical collections that support an application environment, workload, or both. Each project can have its own users, teams, security, tags, and alert settings. To use this resource, the requesting API Key must have the Project Read Only role. @@ -51245,7 +51245,10 @@ paths: tags: - Projects x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getProjectByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51258,9 +51261,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getProjectByName --help /api/atlas/v2/orgs: get: description: Returns all organizations to which the requesting API Key has access. To use this resource, the requesting API Key must have the Organization Member role. @@ -51300,7 +51300,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51313,9 +51316,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizations --help post: description: Creates one organization in MongoDB Cloud and links it to the requesting API Key's organization. To use this resource, the requesting API Key must have the Organization Owner role. The requesting API Key's organization must be a paying organization. To learn more, see [Configure a Paying Organization](https://www.mongodb.com/docs/atlas/billing/#configure-a-paying-organization) in the MongoDB Atlas documentation. operationId: createOrganization @@ -51355,7 +51355,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51372,9 +51375,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganization --help /api/atlas/v2/orgs/{orgId}: delete: description: |- @@ -51413,7 +51413,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51426,9 +51429,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganization --help get: description: Returns one organization to which the requesting API key has access. To use this resource, the requesting API Key must have the Organization Member role. operationId: getOrganization @@ -51460,7 +51460,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51473,9 +51476,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganization --help patch: description: Renames one organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: renameOrganization @@ -51514,7 +51514,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameOrganization --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51531,9 +51534,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameOrganization --help /api/atlas/v2/orgs/{orgId}/apiKeys: get: description: Returns all organization API keys for the specified organization. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the console. To use this resource, the requesting API Key must have the Organization Member role. @@ -51566,7 +51566,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeys --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51579,9 +51582,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listApiKeys --help post: description: Creates one API key for the specified organization. An organization API key grants programmatic access to an organization. You can't use the API key to log into the console. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -51617,7 +51617,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51634,9 +51637,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}: delete: description: Removes one organization API key from the specified organization. When you remove an API key from an organization, MongoDB Cloud also removes that key from any projects that use that key. To use this resource, the requesting API Key must have the Organization Owner role. @@ -51675,7 +51675,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51688,9 +51691,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteApiKey --help get: description: Returns one organization API key. The organization API keys grant programmatic access to an organization. You can't use the API key to log into MongoDB Cloud through the user interface. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -51728,7 +51728,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51741,9 +51744,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates one organization API key in the specified organization. The organization API keys grant programmatic access to an organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -51790,7 +51790,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateApiKey --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51807,9 +51810,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateApiKey --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList: get: description: Returns all access list entries that you configured for the specified organization API key. To use this resource, the requesting API Key must have the Organization Member role. @@ -51851,7 +51851,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listApiKeyAccessListsEntries --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51864,9 +51867,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Creates the access list entries for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. operationId: createApiKeyAccessList @@ -51917,7 +51917,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -51934,9 +51937,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createApiKeyAccessList --help /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}: delete: description: Removes the specified access list entry from the specified organization API key. Resources require all API requests originate from the IP addresses on the API access list. To use this resource, the requesting API Key must have the Read Write role. In addition, you cannot remove the requesting IP address from the requesting organization API key. @@ -51987,7 +51987,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteApiKeyAccessListEntry --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52000,9 +52003,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 get: description: Returns one access list entry for the specified organization API key. Resources require all API requests originate from IP addresses on the API access list. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -52050,7 +52050,10 @@ paths: tags: - Programmatic API Keys x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getApiKeyAccessList --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52063,9 +52066,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: post: description: Creates a query process within the Cost Explorer for the given parameters. A token is returned that can be used to poll the status of the query and eventually retrieve the results. @@ -52100,7 +52100,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52117,9 +52120,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createCostExplorerQueryProcess --help /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}: get: description: Returns the usage details for a Cost Explorer query, if the query is finished and the data is ready to be viewed. If the data is not ready, a 'processing' response willindicate that another request should be sent later to view the data. @@ -52164,7 +52164,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createCostExplorerQueryProcess_1 --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52177,9 +52180,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/events: get: description: |- @@ -52241,7 +52241,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationEvents --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52254,9 +52257,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationEvents --help /api/atlas/v2/orgs/{orgId}/events/{eventId}: get: description: |- @@ -52303,7 +52303,10 @@ paths: tags: - Events x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationEvent --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52316,9 +52319,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/federationSettings: get: description: Returns information about the federation settings for the specified organization. To use this resource, the requesting API Key must have the Organization Owner role in the connected org. @@ -52349,7 +52349,10 @@ paths: tags: - Federated Authentication x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getFederationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52362,9 +52365,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getFederationSettings --help /api/atlas/v2/orgs/{orgId}/groups: get: description: |- @@ -52411,7 +52411,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52424,9 +52427,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationProjects --help /api/atlas/v2/orgs/{orgId}/invites: get: description: Returns all pending invitations to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. @@ -52465,7 +52465,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationInvitations --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52478,9 +52481,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationInvitations --help patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the username of the invited user. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitation @@ -52517,7 +52517,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52534,9 +52537,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitation --help post: description: Invites one MongoDB Cloud user to join the specified organization. The user must accept the invitation to access information within the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: createOrganizationInvitation @@ -52573,7 +52573,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52590,9 +52593,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createOrganizationInvitation --help /api/atlas/v2/orgs/{orgId}/invites/{invitationId}: delete: description: Cancels one pending invitation sent to the specified MongoDB Cloud user to join an organization. You can't cancel an invitation that the user accepted. To use this resource, the requesting API Key must have the Organization Owner role. @@ -52629,7 +52629,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52642,9 +52645,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteOrganizationInvitation --help get: description: Returns the details of one pending invitation to the specified organization. To use this resource, the requesting API Key must have the Organization Owner role. operationId: getOrganizationInvitation @@ -52682,7 +52682,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationInvitation --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52695,9 +52698,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Updates the details of one pending invitation to the specified organization. To specify which invitation, provide the unique identification string for that invitation. Use the Return All Organization Invitations endpoint to retrieve IDs for all pending organization invitations. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationInvitationById @@ -52743,7 +52743,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationInvitationById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52760,9 +52763,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationInvitationById --help /api/atlas/v2/orgs/{orgId}/invoices: get: description: |- @@ -52853,7 +52853,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52866,9 +52869,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listInvoices --help /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: get: description: |- @@ -52912,7 +52912,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getInvoice --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52925,9 +52928,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: get: description: |- @@ -52972,7 +52972,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api downloadInvoiceCSV --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -52985,9 +52988,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search: get: description: Query the lineItems of the specified invoice and return the result JSON. A unique 24-hexadecimal digit string identifies the invoice. @@ -53033,7 +53033,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api queryLineItemsFromSingleInvoice --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53046,9 +53049,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/invoices/pending: get: description: Returns all invoices accruing charges for the current billing cycle for the specified organization. To use this resource, the requesting API Key must have the Organization Billing Viewer, Organization Billing Admin, or Organization Owner role. If you have a cross-organization setup, you can view linked invoices if you have the Organization Billing Admin or Organization Owner Role. @@ -53077,7 +53077,10 @@ paths: tags: - Invoices x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listPendingInvoices --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53090,9 +53093,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: get: description: Return all projects that you can migrate to the specified organization. @@ -53123,7 +53123,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listSourceProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53136,9 +53139,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: delete: description: Remove one organization link and its associated public API key. MongoDB Atlas uses the link-token for push live migrations only. Live migrations (push) let you securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. @@ -53166,7 +53166,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53179,9 +53182,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - - label: Atlas CLI - lang: cURL - source: atlas api deleteLinkToken --help post: description: Create one link-token that contains all the information required to complete the link. MongoDB Atlas uses the link-token for push live migrations only. Live migration (push) allows you to securely push data from Cloud Manager or Ops Manager into MongoDB Atlas. Your API Key must have the Organization Owner role to successfully call this resource. operationId: createLinkToken @@ -53216,7 +53216,10 @@ paths: tags: - Cloud Migration Service x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createLinkToken --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53233,9 +53236,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createLinkToken --help /api/atlas/v2/orgs/{orgId}/serviceAccounts: get: description: Returns list of Service Accounts with service account details. @@ -53266,7 +53266,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServiceAccounts --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53279,9 +53282,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listServiceAccounts --help post: description: Create Service Account containing client id and client secrets. operationId: createServiceAccount @@ -53316,7 +53316,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53333,9 +53336,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServiceAccount --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}: delete: description: Delete Service Account. @@ -53368,7 +53368,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53381,9 +53384,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteServiceAccount --help get: description: Get Service Account Details. operationId: getServiceAccount @@ -53417,7 +53417,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53430,9 +53433,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Update Service Account. operationId: updateServiceAccount @@ -53475,7 +53475,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateServiceAccount --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53492,9 +53495,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateServiceAccount --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups: get: description: Returns list of Service Account projects. @@ -53531,7 +53531,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listServiceAccountProjects --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53544,9 +53547,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets: post: description: Create Service Account secret. @@ -53588,7 +53588,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createServiceAccountSecret --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53605,9 +53608,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createServiceAccountSecret --help /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}: delete: description: Delete Service Account Secret. @@ -53646,7 +53646,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteServiceAccountSecret --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53659,9 +53662,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/settings: get: description: Returns details about the specified organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. @@ -53692,7 +53692,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53705,9 +53708,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getOrganizationSettings --help patch: description: Updates the organization's settings. To use this resource, the requesting API Key must have the Organization Owner role. operationId: updateOrganizationSettings @@ -53744,7 +53744,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationSettings --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53761,9 +53764,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationSettings --help /api/atlas/v2/orgs/{orgId}/teams: get: description: Returns all teams that belong to the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud only returns teams for which you have access. To use this resource, the requesting API Key must have the Organization Member role. @@ -53800,7 +53800,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationTeams --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53813,9 +53816,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationTeams --help post: description: Creates one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. MongoDB Cloud limits the number of teams to a maximum of 250 teams per organization. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -53857,7 +53857,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53874,9 +53877,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}: delete: description: Removes one team specified using its unique 24-hexadecimal digit identifier from the organization specified using its unique 24-hexadecimal digit identifier. To use this resource, the requesting API Key must have the Organization Owner role. @@ -53919,7 +53919,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api deleteTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53932,9 +53935,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - - label: Atlas CLI - lang: cURL - source: atlas api deleteTeam --help get: description: Returns one team that you identified using its unique 24-hexadecimal digit ID. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. externalDocs: @@ -53976,7 +53976,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamById --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -53989,9 +53992,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 patch: description: Renames one team in the specified organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -54042,7 +54042,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api renameTeam --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54059,9 +54062,6 @@ paths: --header "Content-Type: application/json" \ -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api renameTeam --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users: get: description: Returns all MongoDB Cloud users assigned to the team specified using its unique 24-hexadecimal digit identifier. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -54108,7 +54108,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listTeamUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54121,9 +54124,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 post: description: Adds one or more MongoDB Cloud users from the specified organization to the specified team. Teams enable you to grant project access roles to MongoDB Cloud users. You can assign up to 250 MongoDB Cloud users from one organization to one team. To use this resource, the requesting API Key must have the Organization Owner role. externalDocs: @@ -54176,7 +54176,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api addTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54193,9 +54196,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api addTeamUser --help /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified team. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Owner role. @@ -54245,7 +54245,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeTeamUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54258,9 +54261,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: get: description: Returns one team that you identified using its human-readable name. This team belongs to one organization. Teams enable you to grant project access roles to MongoDB Cloud users. To use this resource, the requesting API Key must have the Organization Member role. @@ -54300,7 +54300,10 @@ paths: tags: - Teams x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getTeamByName --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54313,9 +54316,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -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 /api/atlas/v2/orgs/{orgId}/users: get: description: Returns details about the MongoDB Cloud users associated with the specified organization. Each MongoDB Cloud user returned must belong to the specified organization or to a project within the specified organization. To use this resource, the requesting API Key must have the Organization Member role. @@ -54349,7 +54349,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api listOrganizationUsers --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54362,9 +54365,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api listOrganizationUsers --help /api/atlas/v2/orgs/{orgId}/users/{userId}: delete: description: Removes one MongoDB Cloud user from the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -54405,7 +54405,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api removeOrganizationUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54418,9 +54421,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - - label: Atlas CLI - lang: cURL - source: atlas api removeOrganizationUser --help /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: put: description: Updates the roles of the specified user in the specified organization. To specify the user to update, provide the unique 24-hexadecimal digit string that identifies the user in the specified organization. To use this resource, the requesting API Key must have the Organization User Admin role. @@ -54467,7 +54467,10 @@ paths: tags: - Organizations x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api updateOrganizationRoles --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54484,9 +54487,6 @@ paths: --header "Content-Type: application/json" \ -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api updateOrganizationRoles --help /api/atlas/v2/unauth/controlPlaneIPAddresses: get: description: Returns all control plane IP addresses. Currently, inbound Atlas control plane IP addresses are not yet available. The inbound IP address list in your API response is empty. To manually retrieve a list of inbound Atlas control plane IP addresses, see [Required Inbound Access](https://www.mongodb.com/docs/atlas/setup-cluster-security/#std-label-atlas-required-inbound-access). @@ -54507,7 +54507,10 @@ paths: tags: - Root x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api returnAllControlPlaneIPAddresses --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54520,9 +54523,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api returnAllControlPlaneIPAddresses --help /api/atlas/v2/users: post: description: |- @@ -54562,7 +54562,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api createUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54579,9 +54582,6 @@ paths: --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ -d '{ }' - - label: Atlas CLI - lang: cURL - source: atlas api createUser --help /api/atlas/v2/users/{userId}: get: description: Returns the details for one MongoDB Cloud user account with the specified unique identifier for the user. You can't use this endpoint to return information on an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. You can always retrieve your own user account. If you are the owner of a MongoDB Cloud organization or project, you can also retrieve the user profile for any user with membership in that organization or project. To use this resource, the requesting API Key can have any role. @@ -54618,7 +54618,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUser --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54631,9 +54634,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUser --help /api/atlas/v2/users/byName/{userName}: get: description: Returns the details for one MongoDB Cloud user account with the specified username. You can't use this endpoint to return information about an API Key. To return information about an API Key, use the [Return One Organization](#tag/Organizations/operation/getOrganization) API Key endpoint. To use this resource, the requesting API Key can have any role. @@ -54668,7 +54668,10 @@ paths: tags: - MongoDB Cloud Users x-codeSamples: - - label: curl (Service Account - oauth2) + - label: Atlas CLI + lang: cURL + source: atlas api getUserByUsername --help + - label: curl (Service Accounts) lang: cURL source: |- curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ @@ -54681,9 +54684,6 @@ paths: --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - - label: Atlas CLI - lang: cURL - source: atlas api getUserByUsername --help servers: - url: https://cloud.mongodb.com tags: From 4d443b270cc94fc4d982d20c279d43f51917e706 Mon Sep 17 00:00:00 2001 From: andreaangiolillo Date: Wed, 4 Jun 2025 17:03:51 +0200 Subject: [PATCH 6/6] fix unit tests --- .../openapi/filter/code_sample_test.go | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/tools/cli/internal/openapi/filter/code_sample_test.go b/tools/cli/internal/openapi/filter/code_sample_test.go index be70fc8638..39ac1ac50c 100644 --- a/tools/cli/internal/openapi/filter/code_sample_test.go +++ b/tools/cli/internal/openapi/filter/code_sample_test.go @@ -76,6 +76,11 @@ func TestCodeSampleFilter(t *testing.T) { Extensions: map[string]any{ "x-sunset": "9999-12-31", "x-codeSamples": []codeSample{ + { + Lang: "cURL", + Label: "Atlas CLI", + Source: "atlas api testOperationID --help", + }, { Lang: "cURL", Label: "curl (Service Accounts)", @@ -88,11 +93,6 @@ func TestCodeSampleFilter(t *testing.T) { 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/test?pretty=true\"", }, - { - Lang: "cURL", - Label: "Atlas CLI", - Source: "atlas api testOperationID --help", - }, }, }, }, @@ -145,6 +145,11 @@ func TestCodeSampleFilter(t *testing.T) { Extensions: map[string]any{ "x-sunset": "9999-12-31", "x-codeSamples": []codeSample{ + { + Lang: "cURL", + Label: "Atlas CLI", + Source: "atlas api testOperationID --help", + }, { Lang: "cURL", Label: "curl (Service Accounts)", @@ -157,11 +162,6 @@ func TestCodeSampleFilter(t *testing.T) { Source: "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, - { - Lang: "cURL", - Label: "Atlas CLI", - Source: "atlas api testOperationID --help", - }, }, }, }, @@ -214,6 +214,11 @@ func TestCodeSampleFilter(t *testing.T) { Extensions: map[string]any{ "x-sunset": "9999-12-31", "x-codeSamples": []codeSample{ + { + Lang: "cURL", + Label: "Atlas CLI", + Source: "atlas api testOperationID --help", + }, { Lang: "cURL", Label: "curl (Service Accounts)", @@ -226,11 +231,6 @@ func TestCodeSampleFilter(t *testing.T) { Source: "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, - { - Lang: "cURL", - Label: "Atlas CLI", - Source: "atlas api testOperationID --help", - }, }, }, },